From 73041b76a58213c451cb86d7bec741d3c97c4296 Mon Sep 17 00:00:00 2001 From: Rudra Gupta Date: Wed, 25 Sep 2024 23:22:10 -0400 Subject: [PATCH] feat: update tf modules Signed-off-by: Rudra Gupta --- .github/workflows/check-compliance.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check-compliance.yml b/.github/workflows/check-compliance.yml index caea2fc..0b63f0c 100644 --- a/.github/workflows/check-compliance.yml +++ b/.github/workflows/check-compliance.yml @@ -84,14 +84,17 @@ jobs: # Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc. - name: Terraform Init run: terraform init + working-directory: examples/basic # Checks that all Terraform configuration files adhere to a canonical format - name: Terraform Format run: terraform fmt -check + working-directory: examples/basic # Generates an execution plan for Terraform - name: Terraform Plan run: terraform plan -input=false + working-directory: examples/basic # On push to "master", build or change infrastructure according to Terraform configuration files # - name: Terraform Apply