Initial commit for template
This commit is contained in:
11
variables.tf
Normal file
11
variables.tf
Normal file
@ -0,0 +1,11 @@
|
||||
variable "mandatory_var" {
|
||||
description = "This variable has no default and is mandatory"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "optional_var" {
|
||||
description = "This variable is optional since it has a default value"
|
||||
type = string
|
||||
default = "peperonipizza"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user