From dc955f6076c593b93ce5f7a53ef85f635fae3a0e Mon Sep 17 00:00:00 2001 From: Simone Ruffilli Date: Fri, 15 Oct 2021 09:24:31 +0200 Subject: [PATCH] Fixed module paths --- factories/example-environments/dev/main.tf | 2 +- factories/example-environments/prod/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/factories/example-environments/dev/main.tf b/factories/example-environments/dev/main.tf index 61e94a88d..a7c58c1e6 100644 --- a/factories/example-environments/dev/main.tf +++ b/factories/example-environments/dev/main.tf @@ -16,6 +16,6 @@ module "subnets" { - source = "../subnets" + source = "../../subnets" config_folder = "conf" } diff --git a/factories/example-environments/prod/main.tf b/factories/example-environments/prod/main.tf index 61e94a88d..a7c58c1e6 100644 --- a/factories/example-environments/prod/main.tf +++ b/factories/example-environments/prod/main.tf @@ -16,6 +16,6 @@ module "subnets" { - source = "../subnets" + source = "../../subnets" config_folder = "conf" }