I suggest you read the previous example before continuing with this one.
Private subnet vs. Public subnet
As you might already notice in VCN &public subnet tutorial, when you assign a public subnet to your instance (with a public IP), in order to make possible the communication with the Internet (outbound and inbound traffic), you need to set-up an Internet Gateway, as well.
However, there are situations when one does not want the hosts/services to be accessed from the outside (inbound), and yet to still be able to access the Internet (outbound) for performing certain actions, such as updates.
In this scenario, your hosts will be provided a private subnet (and private IPs), along with a NAT Gateway.
Adapting your Terraform code
We have already discussed about what we need for a VCN &private subnet:
If you read carefully the documentation, you will find the following information about "prohibit_public_ip_on_vnic"
prohibit_public_ip_on_vnic - (Optional) Whether VNICs within this subnet can have public IP addresses. Defaults to false, which means VNICs created in this subnet will automatically be assigned public IP addresses unless specified otherwise during instance launch or VNIC creation [...]. If prohibitPublicIpOnVnic is set to true, VNICs created in this subnet cannot have public IP addresses (that is, it's a private subnet).
Taking in consideration that piece of documentation, my "subnet.tf" file will have the following addition:
root@deploymentmachine:/home/nat_example# more subnet.tf | grep prohibit
prohibit_public_ip_on_vnic = true
As usual, for deploying, use the three main terraform commands:
terraform init
terraform plan
terraform apply
root@deploymentmachine:/home/nat_example# terraform apply
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
[ ... snip ... ]
Enter a value: yes
oci_identity_compartment.WildTestCompartment: Creating...
oci_identity_compartment.WildTestCompartment: Creation complete after 1s [id=ocid1.compartment.oc1..q]
oci_core_virtual_network.WildTestVCN: Creating...
oci_core_virtual_network.WildTestVCN: Creation complete after 1s [id=ocid1.vcn.oc1.eu-frankfurt-1.a]
oci_core_nat_gateway.WildTestNATGateway: Creating...
oci_core_dhcp_options.WildTestDHCPOptions: Creating...
oci_core_security_list.WildTestSecurityList: Creating...
oci_core_security_list.WildTestSecurityList: Creation complete after 0s [id=ocid1.securitylist.oc1.eu-frankfurt-1.a]
oci_core_dhcp_options.WildTestDHCPOptions: Creation complete after 0s [id=ocid1.dhcpoptions.oc1.eu-frankfurt-1.a]
oci_core_nat_gateway.WildTestNATGateway: Creation complete after 1s [id=ocid1.natgateway.oc1.eu-frankfurt-1.a]
oci_core_route_table.WildTestRouteTable: Creating...
oci_core_route_table.WildTestRouteTable: Creation complete after 1s [id=ocid1.routetable.oc1.eu-frankfurt-1.aa]
oci_core_subnet.WildTestSubnet: Creating...
oci_core_subnet.WildTestSubnet: Creation complete after 2s [id=ocid1.subnet.oc1.eu-frankfurt-1.q]
Check deployed Resources in OCI Cloud
Go to Menu > Networking > Virtual Cloud Networks
From List Scope, check if your new compartment WildTestCompartment has been created, and if so, select it:
Check if private subnet was created:
Check the Security Lists:
The Ingress Rules:
The Egress Rules:
And of course, check the NAT Gateway:
Destroying resources
For destroying resources, run the "terraform destroy" command:
root@deploymentmachine:/home/nat_example# terraform destroy
[ ... snip .... ]
Enter a value: yes
oci_core_subnet.WildTestSubnet: Destroying... [id=ocid1.subnet.oc1.eu-frankfurt-1.aaq]
oci_core_subnet.WildTestSubnet: Destruction complete after 1s
oci_core_route_table.WildTestRouteTable: Destroying... [id=ocid1.routetable.oc1.eu-frankfurt-1.aa]
oci_core_dhcp_options.WildTestDHCPOptions: Destroying... [id=ocid1.dhcpoptions.oc1.eu-frankfurt-1.aa]
oci_core_security_list.WildTestSecurityList: Destroying... [id=ocid1.securitylist.oc1.eu-frankfurt-1.aa]
oci_core_security_list.WildTestSecurityList: Destruction complete after 0s
oci_core_dhcp_options.WildTestDHCPOptions: Destruction complete after 0s
oci_core_route_table.WildTestRouteTable: Destruction complete after 0s
oci_core_nat_gateway.WildTestNATGateway: Destroying... [id=ocid1.natgateway.oc1.eu-frankfurt-1.aaaa5a]
oci_core_nat_gateway.WildTestNATGateway: Destruction complete after 1s
oci_core_virtual_network.WildTestVCN: Destroying... [id=ocid1.vcn.oc1.eu-frankfurt-1.a5a]
oci_core_virtual_network.WildTestVCN: Destruction complete after 1s
oci_identity_compartment.WildTestCompartment: Destroying... [id=ocid1.compartment.oc1..aaq]
oci_identity_compartment.WildTestCompartment: Destruction complete after 0s