Skip to content

Commit

Permalink
Merge pull request #7 from DNXLabs/quoted-type-constraints-deprecation
Browse files Browse the repository at this point in the history
Fix quoted type constraints deprecation
  • Loading branch information
arthurbdiniz authored Feb 19, 2020
2 parents 5a12e0f + 704fffc commit a0f28f9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ variable "newbits" {
}

variable "tags" {
type = "map"
type = map(string)
default = {}
description = "Extra tags to attach to resources"
}
Expand Down Expand Up @@ -58,25 +58,25 @@ variable "transit_subnet" {
}

variable "public_nacl_inbound_tcp_ports" {
type = "list"
type = list(string)
default = ["80", "443", "22", "1194"]
description = "TCP Ports to allow inbound on public subnet via NACLs (this list cannot be empty)"
}

variable "public_nacl_inbound_udp_ports" {
type = "list"
type = list(string)
default = []
description = "UDP Ports to allow inbound on public subnet via NACLs (this list cannot be empty)"
}

variable "transit_nacl_inbound_tcp_ports" {
type = "list"
type = list(string)
default = ["1194"]
description = "TCP Ports to allow inbound on transit subnet via NACLs (this list cannot be empty)"
}

variable "transit_nacl_inbound_udp_ports" {
type = "list"
type = list(string)
default = ["1194"]
description = "UDP Ports to allow inbound on transit subnet via NACLs (this list cannot be empty)"
}
Expand Down

0 comments on commit a0f28f9

Please sign in to comment.