43 lines
803 B
HCL
Executable File
43 lines
803 B
HCL
Executable File
variable "compartment_id" {
|
|
description = "Compartment OCID."
|
|
type = string
|
|
}
|
|
|
|
variable "name_prefix" {
|
|
description = "Resource name prefix."
|
|
type = string
|
|
}
|
|
|
|
variable "vcn_cidr" {
|
|
description = "VCN CIDR."
|
|
type = string
|
|
}
|
|
|
|
variable "private_subnet_cidr" {
|
|
description = "Private subnet CIDR."
|
|
type = string
|
|
}
|
|
|
|
variable "public_subnet_cidr" {
|
|
description = "Public subnet CIDR."
|
|
type = string
|
|
}
|
|
|
|
variable "create_public_subnet" {
|
|
description = "Create public subnet and internet gateway."
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "adb_port" {
|
|
description = "Autonomous Database listener port."
|
|
type = number
|
|
}
|
|
|
|
variable "freeform_tags" {
|
|
description = "Freeform tags."
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|