28 lines
391 B
HCL
28 lines
391 B
HCL
variable "k8s_config_yaml" {
|
|
description = "Content of k8s config yaml file"
|
|
type = string
|
|
}
|
|
|
|
variable "wait_on" {
|
|
type = any
|
|
description = "Resources to wait on"
|
|
default = true
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
}
|
|
|
|
variable "uri" {
|
|
type = string
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "private-key" {
|
|
type = string
|
|
sensitive = true
|
|
}
|