OCI CLI small test
n.b: This is a continuation of "Create instance" and "Install and configure OCI CLI"
Preparation
Let's test our OCI CLI, and create another instance in the tenancy with oci cli, since we already know the Compartment OCID and Tenancy OCID.
Let's turn these OCIDs into environment variables, just in case:
We would be needing Compartment only:
I would also be needing a subnet OCID; since we are building this new instance in root compartment, we can use the subnet of our compartment:
No regular expression here for now, since we would just copy-paste the subnet OCID
I also need:
an image OCID, in my case, since I am located in "eu-frankfurt-1", I have chosen an image accordingly.
the path to my id_rsa.pub ssh key (now you understand why we had to create ssh keys on the cloud instance).
the availability domain - you can obtain it from our previous tutorial, by running command "oci iam availability-domain list"
the instance shape/size (in our case, we want to stick to free tier)
and a name (LinuxOCIcli)
Run script
Overall, the script (a bit hardcoded) would look as following:
Make it executable, and run it:
Let's check in the Oracle Cloud UI:
As soon as the instance is available and running, your script should provide a long output with all the details related to this new instance.
Once the instance LinuxOCIcli is available, let's ssh into it:
I can show the Public IP Address in this scenario, since I will be deleting this instance immediately.
Last updated