Playground for configuring and setting up Kubernetes in Oracle Cloud using Terraform
- pass in the required variables as specified in 
variables.tfin a file called.auto.tfvars. - Remove 
configurations.tfOr update it to point to your own account in Terraform. - run 
terraform apply 
The repo will create the following:
- One VCN with 3 subnets
- 1 public subnet: 
public - 3 private subnets: 
data,kubernetesandk8s 
 - 1 public subnet: 
 
Note: main.tf contains cidr information under module "network" block.
- 
K8S cluster with the following:
- 2 Node Pools each pool has two instances (worker nodes)
 
 - 
2 security groups:
ssh_access_public: allows incoming connections to port 22 from safe ipsprivate_subnets: allow vcn internal connection and outgoing connection to public via nat_gateway.