We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afda36a commit 0b28d6bCopy full SHA for 0b28d6b
1 file changed
.github/workflows/azure-dev.yml
@@ -35,14 +35,12 @@ jobs:
35
with:
36
terraform_version: "1.13.4"
37
38
- - name: Log in with Azure (Federated Credentials)
39
- run: |
40
- azd auth login `
41
- --client-id "$Env:AZURE_CLIENT_ID" `
42
- --federated-credential-provider "github" `
43
- --tenant-id "$Env:AZURE_TENANT_ID"
44
- shell: pwsh
45
-
+ - name: Log in with Azure CLI (OIDC)
+ uses: azure/login@v2
+ with:
+ client-id: ${{ vars.AZURE_CLIENT_ID }}
+ tenant-id: ${{ vars.AZURE_TENANT_ID }}
+ subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }}
46
47
- name: Provision Infrastructure
48
run: azd provision --no-prompt
0 commit comments