5 lines
158 B
Terraform
5 lines
158 B
Terraform
|
|
# variables.tf (root module)
|
||
|
|
variable "sn_namespace_name" {
|
||
|
|
type = string
|
||
|
|
description = "Specify into which namespace all resources will be deployed"
|
||
|
|
}
|