From 8da47e8ad8479813fed27d4039f486306e20fa73 Mon Sep 17 00:00:00 2001 From: Derek A Dombek <50093944+derekadombek@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:30:52 -0600 Subject: [PATCH] Forgot to add sku_name to tfvars (#351) Co-authored-by: Administrator --- .github/actions/tf-setup/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/tf-setup/action.yml b/.github/actions/tf-setup/action.yml index eb2b6a55..440809a1 100644 --- a/.github/actions/tf-setup/action.yml +++ b/.github/actions/tf-setup/action.yml @@ -29,9 +29,11 @@ runs: env: RESOURCE_GROUP_NAME: ${{ inputs.azure-resource-group }} NAME: ${{ inputs.app-name }} + SKU_NAME: P3v3 run: | echo resource_group_name=\""$RESOURCE_GROUP_NAME"\" >> terraform.tfvars echo name=\""$NAME"\" >> terraform.tfvars + echo sku_name=\""$SKU_NAME"\" >> terraform.tfvars az config set defaults.group=$RESOURCE_GROUP_NAME - name: Set environment shell: bash