Initial commit: Terraform configurations for multiple cloud providers
This commit is contained in:
22
oracle/modules/vcn/variables.tf
Normal file
22
oracle/modules/vcn/variables.tf
Normal file
@@ -0,0 +1,22 @@
|
||||
variable "compartment_id" {
|
||||
description = "Compartment OCID where the VCN will be created"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "vcn_name" {
|
||||
description = "Name of the VCN"
|
||||
type = string
|
||||
default = "my-vcn"
|
||||
}
|
||||
|
||||
variable "cidr_block" {
|
||||
description = "CIDR block for the VCN"
|
||||
type = string
|
||||
default = "10.0.0.0/16"
|
||||
}
|
||||
|
||||
variable "dns_label" {
|
||||
description = "DNS label for the VCN"
|
||||
type = string
|
||||
default = "vcn"
|
||||
}
|
||||
Reference in New Issue
Block a user