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
Launch instance body supports nested CreateVnicDetails, related parameter updates to Vnics and Subnets (#102)
* Launch instance body supports nested CreateVnicDetails, related parameter updates to Vnics and Subnets
* ipxeScript to launch instance
* adds ProhibitPublicIpOnVnic to subnet creation and HostnameLabel to vnic
* does not removed deprecated subnetId from top launch instance body yet
* create subnet optional routeTableId, securityListIds
* remove merge conflict artifacts
* ignore mac hidden files
@@ -26,6 +27,7 @@ The following arguments are supported:
26
27
*`vcn_id` - (Required) The OCID of the VCN to contain the subnet.
27
28
*`dhcp_options_id` - (Optional) The OCID of the set of DHCP options the subnet will use. If you don't provide a value, the subnet will use the VCN's default set of DHCP options.
28
29
*`display_name` - (Optional) The maximum number of items to return in a paginated "List" call.
30
+
*`prohibit_public_ip_on_vnic` - (Optional) Whether VNICs within this subnet can have public IP. If it is allowed, VNICs created in the subnet will automatically be assigned public IP unless otherwise specified in the VNIC. If it is prohibited, VNICs in the subnet cannot have public IP address assigned. The default value is false if unspecified.
29
31
*`route_table_id` - (Optional) The OCID of the route table the subnet will use. If you don't provide a value, the subnet will use the VCN's default route table.
30
32
*`security_list_ids` - (Optional) OCIDs for the security lists to associate with the subnet. If you don't provide a value, the VCN's default security list will be associated with the subnet. Remember that security lists are associated at the subnet level, but the rules are applied to the individual VNICs in the subnet.
31
33
@@ -41,6 +43,7 @@ The following arguments are supported:
41
43
*`security_list_ids` - OCIDs for the security lists to use for VNICs in this subnet.
42
44
*`display_name` - A user-friendly name. Does not have to be unique, and it's changeable.
43
45
*`id` - The subnet's Oracle ID (OCID).
46
+
*`prohibit_public_ip_on_vnic` - Whether VNICs within this subnet can have public IPs. If it is allowed, VNICs created in the subnet will automatically be assigned public IP unless otherwise specified in the VNIC. If it is prohibited, VNICs in the subnet cannot have public IP address assigned. The default value is false if unspecified.
44
47
*`vcn_id` - The OCID of the VCN the subnet is in.
45
48
*`state` - The VCN's current state. [PROVISIONING, AVAILABLE, TERMINATING, TERMINATED]
46
49
*`time_created` - The date and time the VCN was created.
0 commit comments