We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae70072 commit 2c5509eCopy full SHA for 2c5509e
examples/autoscalinggroup/main.tf
@@ -65,7 +65,6 @@ resource "aws_autoscaling_group" "default" {
65
################################
66
provider "aws" {
67
region = "eu-west-1"
68
- version = "~> 2.7"
69
70
# Make it faster by skipping unneeded checks here
71
skip_get_ec2_platforms = true
main.tf
@@ -73,8 +73,8 @@ data "null_data_source" "tags_as_list_of_maps" {
73
74
inputs = merge(
75
{
76
- "key" = element(keys(local.tags), count.index)
77
- "value" = element(values(local.tags), count.index)
+ "key" = keys(local.tags)[count.index]
+ "value" = values(local.tags)[count.index]
78
},
79
var.additional_tag_map
80
)
0 commit comments