Files
Terraform_template/variables.tf
2026-02-23 18:37:37 +01:00

12 lines
274 B
HCL

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"
}