25 lines
351 B
HCL
25 lines
351 B
HCL
variable "env" {
|
|
type = string
|
|
default = "local"
|
|
}
|
|
|
|
variable "kube_config" {
|
|
type = string
|
|
default = "~/.kube/config"
|
|
}
|
|
|
|
variable "kube_context" {
|
|
type = string
|
|
default = "default"
|
|
}
|
|
|
|
variable "namespace_prefix" {
|
|
type = string
|
|
default = "lot1-"
|
|
}
|
|
|
|
variable "domain" {
|
|
type = string
|
|
default = "local-dataplatform"
|
|
}
|