Skip to content

Commit 03619e4

Browse files
committed
fix: Corrected data type
1 parent 8fd6aa7 commit 03619e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vars.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ variable "allowed_ips" {
7979
A hash of permissions to access the database server by ip. The hash key is the name suffix and each value
8080
has a start and an end value.
8181
EOF
82-
type = object({
82+
type = map(object({
8383
start = string,
8484
end = string
85-
})
85+
}))
8686
default = {}
8787
}

0 commit comments

Comments
 (0)