devops/infra/modules/postgresql/variables.tf

24 lines
351 B
HCL

variable "k8s_config_yaml" {
description = "Content of k8s config yaml file"
type = string
}
variable "wait_on" {
type = string
description = "Variable to wait on"
default = true
}
variable "namespace" {
type = string
}
variable "username" {
type = string
}
variable "enabled" {
type = bool
default = true
}