Created
February 28, 2022 20:44
-
-
Save youssef-chtourou/f65ea5b655710fcccd23667527c1bc56 to your computer and use it in GitHub Desktop.
variables.tf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "rgname" { | |
type = string | |
} | |
variable "website_name" { | |
type = string | |
} | |
variable "plan_name" { | |
type = string | |
} | |
variable "kind_type" { | |
type = string | |
} | |
variable "reserved" { | |
type = bool | |
} | |
variable "tags" { | |
type = map(string) | |
default = { | |
env = "dev" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment