Skip to content

Instantly share code, notes, and snippets.

@spasam
Last active March 27, 2023 21:19
Show Gist options
  • Select an option

  • Save spasam/4a68f1cefdab81089be3f44767e45dae to your computer and use it in GitHub Desktop.

Select an option

Save spasam/4a68f1cefdab81089be3f44767e45dae to your computer and use it in GitHub Desktop.
Prevent the usage of IMDSv1
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Deny",
"Action": "*",
"Resource": "*",
"Condition": {
"NumericLessThan": {
"ec2:RoleDelivery": "2.0"
}
}
},
{
"Effect": "Deny",
"Action": "ec2:RunInstances",
"Resource": "arn:aws:ec2:*:*:instance/*",
"Condition": {
"StringNotEquals": {
"ec2:MetadataHttpTokens": "required"
}
}
},
{
"Effect": "Deny",
"Action": "ec2:ModifyInstanceMetadataOptions",
"Resource": "*"
},
{
"Effect": "Deny",
"Action": "ec2:RunInstances",
"Resource": "arn:aws:ec2:*:*:instance/*",
"Condition": {
"NumericGreaterThan": {
"ec2:MetadataHttpPutResponseHopLimit": "1"
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment