terraform init + logging

This commit is contained in:
miampf 2024-05-10 12:36:04 +02:00
parent 07698aaea4
commit df0450f257
No known key found for this signature in database
GPG Key ID: EF039364B5B6886C

View File

@ -62,4 +62,7 @@ runs:
if: (failure() && steps.e2e-test.conclusion == 'failure') || cancelled()
run: |
cd e2e/miniconstellation
echo $(terraform output -raw rg_name) | xargs az group delete -y --resource-group
terraform init
rg_name=$(terraform output -raw rg_name)
echo "[*] Deleting resource group $rg_name"
az group delete -y --resource-group "$rg_name"