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

9 lines
154 B
Terraform
Raw Normal View History

2020-03-29 10:49:46 -04:00
#
# Variables
#
variable "namespace_name" {
type = string
description = "Name to use for the created namespace"
default = "hello-terraform"
}