9 lines
154 B
Terraform
9 lines
154 B
Terraform
|
#
|
||
|
# Variables
|
||
|
#
|
||
|
|
||
|
variable "namespace_name" {
|
||
|
type = string
|
||
|
description = "Name to use for the created namespace"
|
||
|
default = "hello-terraform"
|
||
|
}
|