| Event | Speech | Date | Link |
|---|---|---|---|
| Masters of Cloud 23 | Infrastructure as Code. The key to manage Cloud Systems | 23/05/2023 | Link |
| CLOUDWORLD 23 | Deploying Oracle Cloud Infrastructure Environments with Terraform | 19/09/2023 | Link |
| SPOUG 23 | FinOps: Maximizing Business Value in Cloud Environments | 17/10/2023 | Link |
| HROUG 23 | Developing a 100% SEO-friendly site in Oracle Cloud | 19/10/2023 | Link |
| UKOUG 23 | Infrastructure as Code. The key to manage Cloud Systems | 15/11/2023 | Link |
| DOAG 23 | Hello APEX! A full lifecycle app development with APEX and OCM | 22/11/2023 | Link |
| DOAG 23 | New Channels to Improve Communication between Citizens and Public Services | 23/11/2023 | Link |
| NLOUG 24 | Oracle Digital Assistant: No slides, just code | 16/10/2024 | Link |
| NLOUG 24 | Enhancing FinOps in OCI with AI: Predictive Analysis & Resource Optimization | 16/10/2024 | Link |
| SPOUG 24 | Enhancing FinOps in OCI with AI: Predictive Analysis & Resource Optimization | 22/10/2024 | Link |
| DOUG 24 | IaC and automation: why you must change your pets for cattles | 24/10/2024 | Link |
A few days ago, in the previous post, we saw how to create a VCN. Today we are going to see how to create a subnet. A subnet is nothing more or less than a division of the VCN. A subnet can be contained in a single AD or be common to the entire region (recommended option). To deploy a DB or a compute instance, it is necessary to have previously created a subnet, to place it there and to take an IP within its range. It is also important to note that within the same VCN, the IP ranges of the subnets cannot overlap. A subnet can be public if you want to present the resources to the Internet or private if you do not. To access these resources, resources such as bastions, VPNs or Fastconnect must be used. In later posts we will go into more detail about all of these pieces in more detail. As usual, we are going to look at different ways of creating a VCN in OCI: Manually from OCI Console Access a previously created VCN, in which we want to deploy the subnet. In the subn...