diff --git a/.github/workflows/pgdb-create.yaml b/.github/workflows/pgdb-create.yaml index 980f012..55983f9 100644 --- a/.github/workflows/pgdb-create.yaml +++ b/.github/workflows/pgdb-create.yaml @@ -22,9 +22,9 @@ jobs: - name: Log in to Azure with OIDC uses: azure/login@v1 with: - client-id: ${{ secrets.AZURE_CLIENT_ID }} - tenant-id: ${{ secrets.AZURE_TENANT_ID }} - subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + client-id: ${{ vars.AZURE_CLIENT_ID }} + tenant-id: ${{ vars.AZURE_TENANT_ID }} + subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }} - name: Deploy PG Flexible Server run: | diff --git a/.github/workflows/rg-cleanup.yaml b/.github/workflows/rg-cleanup.yaml index fe0d6be..0967a55 100644 --- a/.github/workflows/rg-cleanup.yaml +++ b/.github/workflows/rg-cleanup.yaml @@ -21,9 +21,9 @@ jobs: - name: Log in to Azure with OIDC uses: azure/login@v1 with: - client-id: ${{ secrets.AZURE_CLIENT_ID }} - tenant-id: ${{ secrets.AZURE_TENANT_ID }} - subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} + client-id: ${{ vars.AZURE_CLIENT_ID }} + tenant-id: ${{ vars.AZURE_TENANT_ID }} + subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }} - name: Delete all resources in the resource group run: |