code-dumps/tf-modulised/vpc-subnets/vpc.tf

36 lines
823 B
Terraform
Raw Normal View History

2020-06-18 10:30:49 +08:00
data "aws_availability_zones" "available" {}
2020-06-28 16:14:23 +08:00
#resource "random_string" "suffix" {
# length = 4
# special = false
#}
resource "random_integer" "suffix" {
min = 1000
max = 9999
2020-06-18 10:30:49 +08:00
}
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.6.0"
2020-06-28 16:14:23 +08:00
name = "demo-vpc-${random_integer.suffix.result}"
2020-06-18 10:30:49 +08:00
cidr = "172.16.0.0/16"
azs = data.aws_availability_zones.available.names
2020-07-23 09:02:47 +08:00
private_subnets = cidrsubnets("172.16.18.0/23", 1, 1)
public_subnets = cidrsubnets("172.16.20.0/23", 1, 1)
2020-06-18 10:30:49 +08:00
enable_nat_gateway = true
single_nat_gateway = true
enable_dns_hostnames = true
tags = {
"owner" = "KF"
"terraform" = "initial-deployment-only"
2020-07-23 09:02:47 +08:00
"environment" = "demo"
"project" = "project1"
"application" = "network"
2020-06-18 10:30:49 +08:00
}
}