This repository has been archived on 2022-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
infra-aws-eks/eks/vpc.tf

46 lines
1.0 KiB
Terraform
Raw Permalink Normal View History

2022-02-11 14:42:37 +01:00
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
tags = {
Name = "vpc-${var.environment}"
Env = var.environment
}
}
resource "aws_subnet" "subnets" {
vpc_id = aws_vpc.main.id
for_each = var.vpc_subnets
cidr_block = each.value.cidr_block
availability_zone = each.value.availability_zone
map_public_ip_on_launch = true
tags = {
Name = "${each.key}-${var.environment}"
Env = var.environment
2022-02-12 10:02:17 +01:00
"kubernetes.io/cluster/eks-cluster-${var.environment}" = "owned"
2022-02-11 14:42:37 +01:00
}
}
2022-02-12 10:02:17 +01:00
// The internet gateway is required so nodes can connect to the control plane
2022-02-11 14:42:37 +01:00
resource "aws_internet_gateway" "nat_gateway" {
vpc_id = aws_vpc.main.id
}
resource "aws_route_table" "nat_gateway" {
vpc_id = aws_vpc.main.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.nat_gateway.id
}
}
resource "aws_route_table_association" "nat_gateway" {
for_each = aws_subnet.subnets
subnet_id = each.value.id
route_table_id = aws_route_table.nat_gateway.id
}