1
0
Fork 0
distrust-stack/terraform_modules/digitalocean_database_cluster/variables.tf

36 lines
446 B
HCL

variable "cluster_name" {
type = string
}
variable "db_engine" {
type = string
}
variable "size" {
type = string
}
variable "digitalocean_region" {
type = string
}
variable "node_count" {
type = number
}
variable "databases" {
type = list(object({
name = string,
create_default_superuser = optional(bool, false),
}))
}
variable "db_version" {
type = string
}
variable "vpc_id" {
type = string
nullable = true
}