48 lines
755 B
HCL
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 = ""
|
|
}
|