@@ -19,13 +19,13 @@ variable "environment" {
19
19
}
20
20
21
21
variable "label_order" {
22
- type = list
22
+ type = list ( any )
23
23
default = []
24
24
description = " Label order, e.g. `name`,`application`."
25
25
}
26
26
27
27
variable "attributes" {
28
- type = list
28
+ type = list ( any )
29
29
default = []
30
30
description = " Additional attributes (e.g. `1`)."
31
31
}
@@ -37,7 +37,7 @@ variable "delimiter" {
37
37
}
38
38
39
39
variable "tags" {
40
- type = map
40
+ type = map ( any )
41
41
default = {}
42
42
description = " Additional tags (e.g. map(`BusinessUnit`,`XYZ`)."
43
43
}
@@ -91,13 +91,13 @@ variable "associate_public_ip_address" {
91
91
}
92
92
93
93
variable "ebs_block_device" {
94
- type = list
94
+ type = list ( any )
95
95
default = []
96
96
description = " Additional EBS block devices to attach to the instance."
97
97
}
98
98
99
99
variable "ephemeral_block_device" {
100
- type = list
100
+ type = list ( any )
101
101
default = []
102
102
description = " Customize Ephemeral (also known as Instance Store) volumes on the instance."
103
103
}
@@ -127,7 +127,7 @@ variable "tenancy" {
127
127
}
128
128
129
129
variable "root_block_device" {
130
- type = list
130
+ type = list ( any )
131
131
default = []
132
132
description = " Customize details about the root block device of the instance. See Block Devices below for details."
133
133
}
@@ -151,7 +151,7 @@ variable "ebs_iops" {
151
151
}
152
152
153
153
variable "availability_zone" {
154
- type = list
154
+ type = list ( any )
155
155
default = []
156
156
description = " Availability Zone the instance is launched in. If not set, will be launched in the first AZ of the region."
157
157
}
@@ -222,7 +222,7 @@ variable "ipv6_address_count" {
222
222
}
223
223
224
224
variable "ipv6_addresses" {
225
- type = list
225
+ type = list ( any )
226
226
default = []
227
227
description = " List of IPv6 addresses from the range of the subnet to associate with the primary network interface."
228
228
}
@@ -258,11 +258,17 @@ variable "cpu_credits" {
258
258
}
259
259
260
260
variable "instance_tags" {
261
- type = map
261
+ type = map ( any )
262
262
default = {}
263
263
description = " Instance tags."
264
264
}
265
265
266
+ variable "volume_tags" {
267
+ type = map (any )
268
+ default = {}
269
+ description = " Volume tags."
270
+ }
271
+
266
272
variable "dns_zone_id" {
267
273
type = string
268
274
default = " "
0 commit comments