Skip to content

Commit 0e323dc

Browse files
committed
Moving to terraform 0.14.2
1 parent 5ac991a commit 0e323dc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

variables.tf

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ variable "health_check_grace_period_seconds" {
5151

5252
variable "ordered_placement_strategy" {
5353
description = "(Optional) Service level strategy rules that are taken into consideration during task placement. List from top to bottom in order of precedence. The maximum number of ordered_placement_strategy blocks is 5. This is a list of maps where each map should contain \"id\" and \"field\""
54-
type = list
54+
type = list(any)
5555
default = []
5656
}
5757

5858
variable "placement_constraints" {
59-
type = list
59+
type = list(any)
6060
description = "(Optional) rules that are taken into consideration during task placement. Maximum number of placement_constraints is 10. This is a list of maps, where each map should contain \"type\" and \"expression\""
6161
default = []
6262
}
@@ -73,7 +73,7 @@ variable "propagate_tags" {
7373

7474
variable "service_registries" {
7575
description = "(Optional) The service discovery registries for the service. The maximum number of service_registries blocks is 1. This is a map that should contain the following fields \"registry_arn\", \"port\", \"container_port\" and \"container_name\""
76-
type = map
76+
type = map(any)
7777
default = {}
7878
}
7979

@@ -92,17 +92,17 @@ variable "force_new_deployment" {
9292
#------------------------------------------------------------------------------
9393
variable "public_subnets" {
9494
description = "The public subnets associated with the task or service."
95-
type = list
95+
type = list(any)
9696
}
9797

9898
variable "private_subnets" {
9999
description = "The private subnets associated with the task or service."
100-
type = list
100+
type = list(any)
101101
}
102102

103103
variable "security_groups" {
104104
description = "(Optional) The security groups associated with the task or service. If you do not specify a security group, the default security group for the VPC is used."
105-
type = list
105+
type = list(any)
106106
default = []
107107
}
108108

@@ -235,7 +235,7 @@ variable "lb_ip_address_type" {
235235
#------------------------------------------------------------------------------
236236
variable "lb_http_ports" {
237237
description = "Map containing objects with two fields, listener_port and the target_group_port to redirect HTTP requests"
238-
type = map
238+
type = map(any)
239239
default = {
240240
default_http = {
241241
listener_port = 80
@@ -258,7 +258,7 @@ variable "lb_http_ingress_prefix_list_ids" {
258258

259259
variable "lb_https_ports" {
260260
description = "Map containing objects with two fields, listener_port and the target_group_port to redirect HTTPS requests"
261-
type = map
261+
type = map(any)
262262
default = {
263263
default_http = {
264264
listener_port = 443
@@ -373,6 +373,6 @@ variable "default_certificate_arn" {
373373

374374
variable "additional_certificates_arn_for_https_listeners" {
375375
description = "(Optional) List of SSL server certificate ARNs for HTTPS listener. Use it if you need to set additional certificates besides default_certificate_arn"
376-
type = list
376+
type = list(any)
377377
default = []
378378
}

0 commit comments

Comments
 (0)