From d01818383aee93ad03c97562c87b58463e0cba63 Mon Sep 17 00:00:00 2001 From: gregory hendrickson Date: Wed, 15 Mar 2023 11:43:54 -0700 Subject: [PATCH] fix ref --- main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.tf b/main.tf index eca5172..4b5e4e3 100644 --- a/main.tf +++ b/main.tf @@ -10,7 +10,7 @@ provider "google" { } module "network" { - source = "./network" + source = "./modules/network" project_id = var.project_id region = var.region network = var.network @@ -18,11 +18,11 @@ module "network" { } module "backend" { - source = "./backend" + source = "./modules/backend" } module "frontend" { - source = "./frontend" + source = "./modules/frontend" project_id = var.project_id region = var.region instance_type = var.instance_type