2. The content of variables.tf (added variables for VCN & Instance creation):
We will create an instance with Ubuntu image. Notice that we allow traffic on ports 22, 8080 and 443. As you probably have noticed earlier, in the static-site.cfg, the default port for nginx has been changed from 80 to 8080.
root@deploymentmachine:/home/terra_and_ansible# more compartment.tf
resource "oci_identity_compartment" "WildTestCompartment" {
compartment_id = var.compartment_ocid
description = "Compartment test for VCN"
name = "WildTestCompartment"
}
This will create a child compartment for the root compartment, named "WildTestCompartment"
11. The content of data.tf - this file allows us to obtain the primary VNIC ID:
root@deploymentmachine:/home/terra_and_ansible# more data.tf
# get a list of vnic attachments
data "oci_core_vnic_attachments" "WildTestVNICs" {
compartment_id = oci_identity_compartment.WildTestCompartment.id
availability_domain = var.available_dom
instance_id = oci_core_instance.WildTestInstance.id
}
# get the primary VNIC ID
data "oci_core_vnic" "WildTestVNICprimary" {
vnic_id = lookup(data.oci_core_vnic_attachments.WildTestVNICs.vnic_attachments[0], "vnic_id")
}
The "local-exec" will run the ansible playbook to install nginx on the new instance. Make sure you run this as a non-root user (in this case, "ubuntu" user)
root@deploymentmachine:/home/terra_and_ansible# more remote.tf
resource "null_resource" "WildTestNginx" {
depends_on = [oci_core_instance.WildTestInstance]
provisioner "remote-exec" {
inline = ["echo I am in ", "hostname", "python3 --version", "sleep 10"]
connection {
type = "ssh"
user = "ubuntu"
host = data.oci_core_vnic.WildTestVNICprimary.public_ip_address
private_key = file(var.private_key_path)
}
}
provisioner "local-exec" {
command = "ansible-playbook -i '${data.oci_core_vnic.WildTestVNICprimary.public_ip_address},' --private-key ${var.private_key_path} nginx.yml -u ubuntu"
}
}
Time to deploy
Run the three Terraform commands: "terraform init", "terraform plan" and, if no Terraform syntax errors, "terraform apply"
In the output of "terraform apply" you will see everything related to Ansible.
If no errors, you should see an output of this kind (in order):
>> Output generated by "remote.tf", "remote-exec" provisioner:
>> Output generated by "remote.tf", "local-exec" provisioner:
Perform the checking
Our instance has been successfully deployed, and according to the "terraform apply" output, so has been the nginx service:
If you try to telnet into the public IP of the new instance, and port 8080, you would get the following error:
telnet: Unable to connect to remote host: No route to host
You can perform a few checks in the OCI UI, just to make sure everything is properly configured:
This is only an issue caused by firewall, that blocks the port 8080.
root@wildtestinstance:~# firewall-cmd --add-port=8080/tcp --permanent
success
root@wildtestinstance:~# firewall-cmd --reload
success
root@wildtestinstance:~#
root@wildtestinstance:~# # and let's check the status of nginx since we are here
root@wildtestinstance:~#
root@wildtestinstance:~# systemctl status nginx | grep -i active
Active: active (running) since Wed 2021-02-10 21:52:18 UTC; 11s ago
root@wildtestinstance:~#
root@wildtestinstance:~# lsof -i :8080
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 2666 root 8u IPv4 32067 0t0 TCP *:http-alt (LISTEN)
nginx 2666 root 9u IPv6 32068 0t0 TCP *:http-alt (LISTEN)
nginx 2667 www-data 8u IPv4 32067 0t0 TCP *:http-alt (LISTEN)
nginx 2667 www-data 9u IPv6 32068 0t0 TCP *:http-alt (LISTEN)
nginx 2668 www-data 8u IPv4 32067 0t0 TCP *:http-alt (LISTEN)
nginx 2668 www-data 9u IPv6 32068 0t0 TCP *:http-alt (LISTEN)
root@wildtestinstance:~#
Let's see if it works now:
root@wildtestinstance:~# exit
logout
ubuntu@wildtestinstance:~$ exit
logout
Connection to 158.101.165.232 closed.
root@deploymentmachine:/home/terra_and_ansible# telnet 158.101.165.232 8080
Trying 158.101.165.232...
Connected to 158.101.165.232.
Escape character is '^]'.
^]
telnet> q
Connection closed.
root@deploymentmachine:/home/terra_and_ansible# curl -v 158.101.165.232:8080
* Trying 158.101.165.232:8080...
* TCP_NODELAY set
* Connected to 158.101.165.232 (158.101.165.232) port 8080 (#0)
> GET / HTTP/1.1
> Host: 158.101.165.232:8080
> User-Agent: curl/7.68.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Server: nginx/1.18.0 (Ubuntu)
< Date: Wed, 10 Feb 2021 20:19:56 GMT
< Content-Type: text/html
< Content-Length: 18
< Last-Modified: Wed, 10 Feb 2021 20:09:28 GMT
< Connection: keep-alive
< ETag: "60243d78-12"
< Accept-Ranges: bytes
<
<h1> Henlo! </h1>
* Connection #0 to host 158.101.165.232 left intact
... and from a browser of your choice:
Notes
Feel free to automate the installation of firewalld from remote.tf file, at "remote-exec", inline
Destroy VCN resources and instance
Run "terraform destroy" in the working directory:
root@deploymentmachine:/home/terra_and_ansible# terraform destroy
[........ snip ...... ]
Do you really want to destroy all resources?
Terraform will destroy all your managed infrastructure, as shown above.
There is no undo. Only 'yes' will be accepted to confirm.
Enter a value: yes
null_resource.WildTestNginx: Destroying... [id=5939405965601922241]
null_resource.WildTestNginx: Destruction complete after 0s
oci_core_instance.WildTestInstance: Destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.antheljt34qs2dycqeanu2hoxfppdiwn4mqb2b4252usjhxx36ts5cbdo2aq]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 10s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 20s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 30s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 40s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 50s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 1m0s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 1m10s elapsed]
oci_core_instance.WildTestInstance: Still destroying... [id=ocid1.instance.oc1.eu-frankfurt-1.anthe...hoxhoxhoxhoxhoxhoxhoxhoxhoxhoxhox, 1m20s elapsed]
oci_core_instance.WildTestInstance: Destruction complete after 1m24s
oci_core_subnet.WildTestSubnet: Destroying... [id=ocid1.subnet.oc1.eu-frankfurt-1.aaaaaaaafffffffffffuuuuuuuuuuuuuu]
oci_core_subnet.WildTestSubnet: Destruction complete after 0s
oci_core_route_table.WildTestRouteTable: Destroying... [id=ocid1.routetable.oc1.eu-frankfurt-1.aaaaaaaauuuuuuuuuuuuuuuu]
oci_core_dhcp_options.WildTestDHCPOptions: Destroying... [id=ocid1.dhcpoptions.oc1.eu-frankfurt-1.aaaaaaaakkkkkkkkkkkkkkkkkkk]
oci_core_security_list.WildTestSecurityList: Destroying... [id=ocid1.securitylist.oc1.eu-frankfurt-1.aaaaaaaazzzzzzzzzzzzzzzzzzzz]
oci_core_dhcp_options.WildTestDHCPOptions: Destruction complete after 0s
oci_core_security_list.WildTestSecurityList: Destruction complete after 1s
oci_core_route_table.WildTestRouteTable: Destruction complete after 1s
oci_core_internet_gateway.WildTestInternetGateway: Destroying... [id=ocid1.internetgateway.oc1.eu-frankfurt-1.aaaaaaaappppppppppppppppppppppppppp]
oci_core_internet_gateway.WildTestInternetGateway: Destruction complete after 0s
oci_core_virtual_network.WildTestVCN: Destroying... [id=ocid1.vcn.oc1.eu-frankfurt-1.amaaaaaannnnnnnnnnnnnnnnnnnnnnn]
oci_core_virtual_network.WildTestVCN: Destruction complete after 0s
oci_identity_compartment.WildTestCompartment: Destroying... [id=ocid1.compartment.oc1..aaaaaaaaaothhhhhhhhhhhhhhhhhhhhhhh]
oci_identity_compartment.WildTestCompartment: Destruction complete after 0s
Destroy complete! Resources: 9 destroyed.