devops/infra/modules/cluster/bootstrap/variables.tf

31 lines
431 B
HCL

variable "cluster" {
description = "Name or ID of the cluster"
type = string
}
variable "vault_server" {
type = string
}
variable "vault_root_token" {
type = string
}
variable "minio_server" {
type = string
}
variable "minio_access_key" {
type = string
}
variable "minio_secret_key" {
type = string
}
variable "wait_on" {
type = any
description = "Resources to wait on"
default = true
}