bouwroute-devops/infra/clusters/management/variables.tf

47 lines
539 B
HCL

variable "endpoints" {
type = map(string)
}
variable "access_key" {
type = string
sensitive = true
}
variable "secret_key" {
type = string
sensitive = true
}
variable "bucket" {
type = string
}
variable "key" {
type = string
}
variable "region" {
type = string
}
variable "minio_server" {
type = string
}
variable "vault_addr" {
type = string
}
variable "vault_token" {
type = string
sensitive = true
}
variable "node_ip" {
type = string
}
variable "node_username" {
type = string
default = "root"
}