Skip to content

Commit 76ce2c5

Browse files
authored
Set the Type Correctly (#14)
* Try a Different Type * Change type * vars on vars
1 parent 7545d3c commit 76ce2c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

group/asg/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variable "stack_item_label" {
1010
}
1111

1212
variable "additional_asg_tags" {
13-
type = list(string)
13+
type = list(any)
1414
default = []
1515
}
1616

group/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ variable "user_data" {
208208

209209
## ASG parameters
210210
variable "additional_asg_tags" {
211-
type = list(map)
211+
type = list(any)
212212
description = "Additional tags to apply at the ASG level, if any"
213213
default = []
214214
}

0 commit comments

Comments
 (0)