- 2022-08-17 ◦ GitHub - sevlyar/go-daemon: A library for writing system daemons in golang.
- 2022-08-17 ◦ I’m new to System Design, where do I start? - DEV Community
- Add SSH key to Bastion host using CDK (CDK, )
1 2 3 4 5 6 7 8 9
const bastionSecurityGroup = new ec2.SecurityGroup(this, 'BastionSecurityGroup', { vpc, }); const bastion = new ec2.BastionHostLinux(this, 'Bastion', { vpc, subnetSelection: { subnetType: ec2.SubnetType.PUBLIC }, instanceName: `my-bastion`, }); bastion.instance.instance.addPropertyOverride('KeyName', `my-bastion-key`);
AWSGoat
AWSGoat : A Damn Vulnerable AWS Infrastructure