In my previous post, I have discussed about how to create vpc, subnets, internet gateway, nat gateway using AWS CDK(Python). In this post, we will be discussing about how to create EKS (k8s) cluster. This is requested by many of my followers, so I would like to write a blog to help the community. CreateContinue reading “AWS CDK (Python) How to Create EKS Cluster”
Monthly Archives: February 2021
AWS CDK (Python)- How to Configure VPC, Subnets, Internet gateway, NatGateway
So far, i’ve discussed about how to configure vpc, subnets, natgateway, ec2 using terraform, in this post i’m going to discuss how to configure VPC, Subnets, Internet Gateway, NatGateway with AWS CDK using python as language. We don’t need to write any complex cloudformation scripts, we use AWS CDK to construct resources. For more informationContinue reading “AWS CDK (Python)- How to Configure VPC, Subnets, Internet gateway, NatGateway”
Configure EC2, ALB using terraform
Continuation to the previous article I’m going to demonstrate how to create AWS EC2, ALB. Backend.tf Providers.tf variables.tf datasources.tf vpc.tf publicsubnets.tf privatesubnets.tf create iam roles , polcies for ec2 instance ec2_assume_role.json ec2-policy.json (This policy grants s3 list put and get, ec2 full access ) create s3 bucket ec2-sg.tf ec2.tf The above script creates ec2 instanceContinue reading “Configure EC2, ALB using terraform”