Skip to content

Commit

Permalink
Changed type syntax for terraform 12
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Valery committed Jan 3, 2020
1 parent 4a9c882 commit 88dec12
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 @@ -20,13 +20,13 @@ variable "stack_name" {
}

variable "delimiter" {
type = "string"
type = string
default = "-"
description = "Delimiter to be used between strings, typically is -, optionally set to empty string for windows hostnames and such"
}

variable "tags" {
type = "map"
type = map
default = {}
description = "Additional tags to tack onto this object (e.g. `map('Purpose`,`webserver`)"
}

0 comments on commit 88dec12

Please sign in to comment.