55 lines
921 B
HCL
55 lines
921 B
HCL
##
|
|
## Autonomous Database JSON
|
|
##
|
|
|
|
variable autonomous_json_enable {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
# Network
|
|
variable autonomous_json_vcn_id {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
# Resource
|
|
variable autonomous_json_name {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable autonomous_json_vcn_compartment {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable autonomous_json_compartment_id {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable autonomous_json_subnet_cidr_block {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable autonomous_json_compute_model {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable autonomous_json_compute_count {
|
|
type = number
|
|
default = 1
|
|
}
|
|
|
|
variable autonomous_json_data_storage_size_in_tbs {
|
|
type = number
|
|
default = 1
|
|
}
|
|
|
|
variable autonomous_json_is_auto_scaling_enabled {
|
|
type = bool
|
|
default = false
|
|
}
|