Terraform : Create a VPC, IG, SUBNETS , NAT, ROUTE TABLES
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Main.tf or vpc.tf resource "aws_vpc" "my-vpc-superkite" { cidr_block = " ${ var . cidr_block } " # default uses the same hardware as other aws customer instance_tenancy = " ${ var . instance_tenancy } " /* -- enable_dns_hostnames = true When this setting is enabled, Amazon Route 53 will automatically create DNS records for the instances in the VPC, allowing them to be addressed by their hostname. This can be useful for services that need to be accessed by their hostname instead of their IP address, or for cases where the IP addresses of the instances may change freq uently. */ enable_dns_hostnames = true /* @color red -- enable_dns_support = true @color W...