2024-04-19 15:54:18 +02:00
|
|
|
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"
|
|
|
|
}
|
2024-10-16 12:07:14 +02:00
|
|
|
|
|
|
|
variable "buckets" {
|
|
|
|
type = list(map(string))
|
|
|
|
default = [ ]
|
|
|
|
}
|
|
|
|
|