- 1 VPC
- 3 private subnets
- 3 public subnets
- a managed Kubernetes cluster (EKS in AWS)

Manual
You can create cloud resources manually within the cloud console and use VPC/Subnet IDs in relevant places.Automate
Add the VPC/Subnet IDs as variables in your Pulumi/Terraform scripts and automate those cloud resources. Say you want to create a RDS database for your environment. Here is how you will do it in Terraform, OpenTofu or Pulumi.Using Terraform or OpenTofu
Here is how you can create an RDS database within the same private subnets and VPCs of the environment using Terraform or OpenTofu.Using Pulumi
Here is a short example in Typescript, for provisioning a RDS database using Pulumi. Note that we can pass in VPC ID and subnet IDs as environment variable.We use
10.0.0.0/16 as CIDR range for any VPC we create. You can use the same as source IP or destination IP range
when defining security groups.Use same tags
LocalOps creates all resources with two standard tags for any given environment. So that you can take inventory of all resources in the cloud, analyse cost per environment in Cost analysis console in the cloud account and more. These tags are exposed within environment Dashboard page.