this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 17 lines 356 B view raw
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}