Files
oracle-deep-data-security-lab/terraform/modules/network/variables.tf
Rodrigo db3d68af10
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled
Improve Deep Data Security lab scenarios
2026-05-13 16:13:04 -03:00

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 = {}
}