this repo has no description
1variable "compartment_id" {
2 description = "Compartment ID where to create all resources"
3 type = string
4}
5
6variable "vcn_cidr_blocks" {
7 description = "The list of IPv4 CIDR blocks the VCN will use"
8 type = list(string)
9 default = [
10 "10.0.0.0/16"
11 ]
12}
13
14variable "subnet_cidr_block" {
15 type = string
16 default = "10.0.0.0/24"
17}