From 9020639123873fc621278d98f2093738ba792ba0 Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Tue, 22 Jun 2021 19:03:48 +0200 Subject: [PATCH] blah --- main.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/main.tf b/main.tf index 66a5826..d0883c7 100644 --- a/main.tf +++ b/main.tf @@ -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"