Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 10, 2023
1 parent c7ade5d commit a9e4136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/variables.common.subnets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ variable "public_subnets" {
tags = map(string)
enabled = optional(bool, true)
availability_zone = optional(string)
availability_zones = optional(list(string))
availability_zones = optional(list(string), [])
# subnets = list(string)
# labels = list(string)
}))
Expand All @@ -29,7 +29,7 @@ variable "private_subnets" {
tags = map(string)
enabled = optional(bool, true)
availability_zone = optional(string)
availability_zones = optional(list(string))
availability_zones = optional(list(string), [])
# subnets = list(string)
# labels = list(string)
}))
Expand Down

0 comments on commit a9e4136

Please sign in to comment.