java-tutorials/terraform-modules/best-practices/k8s-basic/variables.tf

9 lines
154 B
HCL

#
# Variables
#
variable "namespace_name" {
type = string
description = "Name to use for the created namespace"
default = "hello-terraform"
}