From 2aa52df3526c11985f069c21a626924f6602202b Mon Sep 17 00:00:00 2001 From: James Kwon <96548424+hongil0316@users.noreply.github.com> Date: Fri, 27 Dec 2024 23:03:50 -0500 Subject: [PATCH] Correct module path for node-pack-extract --- infrastructure/prod/main.tf | 2 +- infrastructure/staging/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/prod/main.tf b/infrastructure/prod/main.tf index 06c5d43..199c50b 100644 --- a/infrastructure/prod/main.tf +++ b/infrastructure/prod/main.tf @@ -13,7 +13,7 @@ provider "google" { } module "node_pack_extract_trigger" { - source = "../module/node-pack-extract-trigger" + source = "../modules/node-pack-extract-trigger" providers = { google = google } diff --git a/infrastructure/staging/main.tf b/infrastructure/staging/main.tf index ff2055e..9c298d1 100644 --- a/infrastructure/staging/main.tf +++ b/infrastructure/staging/main.tf @@ -13,7 +13,7 @@ provider "google" { } module "node_pack_extract_trigger" { - source = "../module/node-pack-extract-trigger" + source = "../modules/node-pack-extract-trigger" providers = { google = google }