Skip to content

Commit

Permalink
OPS-5920: Fixed MetaData V2
Browse files Browse the repository at this point in the history
vikkasyousaf committed May 14, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
1 parent 5fb6166 commit 00cedc4
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion modules/consul-cluster/main.tf
Original file line number Diff line number Diff line change
@@ -54,7 +54,9 @@ resource "aws_launch_configuration" "launch_configuration" {
placement_tenancy = var.tenancy

metadata_options {
http_tokens = "required"
http_tokens = "required"
http_put_response_hop_limit = 1
http_endpoint = "enabled"
}

security_groups = [
4 changes: 3 additions & 1 deletion modules/vault-cluster/main.tf
Original file line number Diff line number Diff line change
@@ -54,7 +54,9 @@ resource "aws_launch_configuration" "launch_configuration" {
]

metadata_options {
http_tokens = "required"
http_tokens = "required"
http_put_response_hop_limit = 1
http_endpoint = "enabled"
}

associate_public_ip_address = false

0 comments on commit 00cedc4

Please sign in to comment.