Skip to content

Commit b15dbe8

Browse files
tydaknysh
andcommitted
Removed quotes from variable type so it's compatible with Terraform 0.12 (#14)
* Removed quotes from variable type so it's compatible with Terraform 0.12 * Update README.yaml based on suggestion Co-Authored-By: Andriy Knysh <[email protected]> * Regenerated README.md Co-authored-by: Andriy Knysh <[email protected]>
1 parent f6f9346 commit b15dbe8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ variable "relay_email" {
127127
}
128128
129129
variable "forward_emails" {
130-
type = "map"
130+
type = map(list(string))
131131
132132
default = {
133133

README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ usage: |-
7575
}
7676
7777
variable "forward_emails" {
78-
type = "map"
78+
type = map(list(string))
7979
8080
default = {
8181

0 commit comments

Comments
 (0)