Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(cloudformation): Only allow IMDSv2 on Gateway instances #2934

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cdk/lib/__snapshots__/identity-gateway.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,9 @@ exports[`The IdentityGateway stack matches the snapshot 1`] = `
"KeyName": {
"Ref": "KeyName",
},
"MetadataOptions": {
"HttpTokens": "required",
},
"SecurityGroupIds": [
{
"Ref": "InstanceSecurityGroup",
Expand Down
2 changes: 2 additions & 0 deletions cloudformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ Resources:
KeyName: !Ref KeyName
SecurityGroupIds:
- !Ref InstanceSecurityGroup
MetadataOptions:
HttpTokens: required
UserData:
Fn::Base64: !Sub
- |+
Expand Down