From 1adf2a3f4d448073cb9bd15792f043ebb64380d0 Mon Sep 17 00:00:00 2001 From: Balazs Czoma Date: Thu, 20 Jun 2024 09:26:07 -0400 Subject: [PATCH] empty token test --- .github/workflows/module-test-pipeline.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/module-test-pipeline.yml b/.github/workflows/module-test-pipeline.yml index d8f9523..017b72a 100644 --- a/.github/workflows/module-test-pipeline.yml +++ b/.github/workflows/module-test-pipeline.yml @@ -28,8 +28,9 @@ jobs: export PRIVATE_PROVIDER_VERSION="" if [ -n "$PRIVATE_PROVIDER_VERSION" ]; then echo "Using private provider version $PRIVATE_PROVIDER_VERSION" - terraform init -upgrade -reconfigure -plugin-dir=terraform.d/plugins -get-plugins=false - } + grep -rl 'source = "' . | xargs sed -i 's@source = ".*$@source = "app.terraform.io/SolaceDev/solacebroker"@g' + grep -rl 'version = "' . | xargs sed -i 's@ version = ".*$@ version = "${PRIVATE_PROVIDER_VERSION}"@g' + fi - name: Test module from template on test broker run: |