infracloud/archives/invista-nexus_Fix-Unauthorized/variables_redis.tf
2026-03-09 15:02:41 -03:00

48 lines
755 B
HCL

## =================================
## Redis
## =================================
variable redis_enable {
type = bool
default = false
}
variable redis_vcn_compartment {
type = string
default = ""
}
variable redis_vcn_id {
type = string
default = ""
}
variable redis_subnet_cidr_block {
type = string
default = ""
}
variable redis_name {
type = string
default = ""
}
variable redis_compartment_id {
type = string
default = ""
}
variable redis_count_node {
type = number
default = 1
}
variable redis_node_memory_in_gbs {
type = number
default = 1
}
variable redis_software_version {
type = string
default = ""
}