Skip to content

Commit 7cce699

Browse files
johnmathewsclaude
andcommitted
Use individual credentials for azure/login in deploy workflow
Replace AZURE_CREDENTIALS JSON blob with client-id, tenant-id, subscription-id fields. Reuses ACR_CLIENT_ID from docker workflow. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e0f89b0 commit 7cce699

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
- name: Log in to Azure
2424
uses: azure/login@v2
2525
with:
26-
creds: ${{ secrets.AZURE_CREDENTIALS }}
26+
client-id: ${{ secrets.ACR_CLIENT_ID }}
27+
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
28+
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
29+
enable-AzPSSession: false
2730

2831
- name: Set AKS context
2932
run: |

0 commit comments

Comments
 (0)