Skip to content

Commit

Permalink
Delete old vpc (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenmartius authored Apr 22, 2024
2 parents a923f80 + f4c9689 commit 8a00944
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions stacks/us-east-1/vpc/main/main.tf
Original file line number Diff line number Diff line change
@@ -1,24 +1 @@

locals {
name = "main-vpc"
cidr = "10.0.0.0/16"
}

module "vpc" {
source = "terraform-aws-modules/vpc/aws"

name = local.name
cidr = local.cidr

azs = ["us-east-1a", "us-east-1b", "us-east-1c"]
private_subnets = [cidrsubnet(local.cidr, 8, 1), cidrsubnet(local.cidr, 8, 2), cidrsubnet(local.cidr, 8, 3)]
public_subnets = [cidrsubnet(local.cidr, 8, 101), cidrsubnet(local.cidr, 8, 102), cidrsubnet(local.cidr, 8, 103)]

enable_nat_gateway = true
enable_vpn_gateway = true

tags = {
Terraform = "true"
Environment = "dev"
}
}

0 comments on commit 8a00944

Please sign in to comment.