You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because you can specify multiple security lists/subnet the security_list_ids value must be specified as a list in []'s.
31
-
See https://www.terraform.io/docs/configuration/syntax.html
32
-
33
-
Generally you wouldn't specify a subnet without first specifying a VCN. Once the VCN has been created you would get the vcn_id, route_table_id, and security_list_id(s) from that resource and use Terraform attributes below to populate those values.
34
-
See https://www.terraform.io/docs/configuration/interpolation.html*/
35
-
resource"oci_core_subnet""ExampleSubnet" {
29
+
// A regional subnet will not specify an Availability Domain
*`availability_domain` - (Required) The availability domain to contain the subnet. Example: `Uocm:PHX-AD-1`
71
+
*`availability_domain` - (Optional) The availability domain to contain the subnet. Example: `Uocm:PHX-AD-1`
72
72
*`cidr_block` - (Required) The CIDR IP address range of the subnet. Example: `172.16.1.0/24`
73
73
*`compartment_id` - (Required) The OCID of the compartment to contain the subnet.
74
74
*`defined_tags` - (Optional) (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
0 commit comments