Skip to content

Commit

Permalink
feat: remove partially deployed VPC (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenmartius authored Jun 25, 2024
2 parents dd3af2b + 2430275 commit f3ad92e
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions stacks/terraform/vpc/main.tf
Original file line number Diff line number Diff line change
@@ -1,18 +0,0 @@
module "vpc" {
source = "terraform-aws-modules/vpc/aws"

name = "demo-vpc"
cidr = "20.0.0.0/16"

azs = ["eu-west-1a", "eu-west-1b", "eu-west-1c"]
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]

enable_nat_gateway = false
enable_vpn_gateway = false

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

0 comments on commit f3ad92e

Please sign in to comment.