oracle-terraform-modules / terraform-oci-vcn

A reusable and extensible Terraform module that provisions a VCN on Oracle Cloud Infrastructure
https://oracle-terraform-modules.github.io/terraform-oci-vcn/
Universal Permissive License v1.0
37 stars 66 forks source link

Documentation for subnet #97

Open XieGuochao opened 2 years ago

XieGuochao commented 2 years ago

Community Note

Description

Please add more documentations for the subnet submodule and variable.

johnlane commented 2 years ago

Just in case it helps anyone else passing here, saving you the time it took me to work this out.

  subnets                  = { "red": { cidr_block = "10.0.0.0/24",
                            dns_label = "red"
                                      },
                              "blue": { cidr_block = "10.0.1.0/24",
                            dns_label = "blue"
                                      }
                             }