This commit is contained in:
Patrick de Ruiter 2021-06-22 19:03:48 +02:00
parent 79c6f8f5f2
commit 9020639123

15
main.tf
View File

@ -41,6 +41,21 @@ module "vpc" {
# stage = var.stage
#}
#
module "vpc-flow-logs" {
source = "umotif-public/vpc-flow-logs/aws"
version = "~> 1.1.2"
name_prefix = var.name
vpc_id = module.vpc.vpc_id
traffic_type = "ALL"
tags = {
Project = "Test"
}
}
module "subnets" {
#source = "git@github.com:cloudposse/terraform-aws-dynamic-subnets.git?ref=tags/0.39.0"
source = "cloudposse/dynamic-subnets/aws"