Skip to content

Commit

Permalink
fix: Change instance_metadata_tags to default to null/disabled
Browse files Browse the repository at this point in the history
…due to tag key pattern conflict (#1788)
  • Loading branch information
bryantbiggs authored Jan 18, 2022
1 parent fcd4abb commit 8e4dfa2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/eks_managed_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ module "eks" {
http_endpoint = "enabled"
http_tokens = "required"
http_put_response_hop_limit = 2
instance_metadata_tags = "enabled"
instance_metadata_tags = "disabled"
}

create_iam_role = true
Expand Down
2 changes: 1 addition & 1 deletion examples/self_managed_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ module "eks" {
http_endpoint = "enabled"
http_tokens = "required"
http_put_response_hop_limit = 2
instance_metadata_tags = "enabled"
instance_metadata_tags = "disabled"
}

create_iam_role = true
Expand Down
1 change: 0 additions & 1 deletion node_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ locals {
http_endpoint = "enabled"
http_tokens = "required"
http_put_response_hop_limit = 2
instance_metadata_tags = "enabled"
}
}

Expand Down

0 comments on commit 8e4dfa2

Please sign in to comment.