Skip to content

Commit

Permalink
fix: change type of subnets, routes
Browse files Browse the repository at this point in the history
  • Loading branch information
KoLiBer committed Jul 26, 2022
1 parent 736cdde commit f07bc4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "labels" {
}

variable "subnets" {
type = list(object({
type = map(object({
type = string
cidr = string
}))
Expand All @@ -44,7 +44,7 @@ variable "subnets" {
}

variable "routes" {
type = list(object({
type = map(object({
destination = string
gateway = string
}))
Expand Down

0 comments on commit f07bc4b

Please sign in to comment.