Initial Oracle Deep Data Security lab kit
This commit is contained in:
42
terraform/modules/network/variables.tf
Normal file
42
terraform/modules/network/variables.tf
Normal file
@@ -0,0 +1,42 @@
|
||||
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 = {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user