지식 점검
동료가 GitHub 배포 워크플로에서 워크로드 ID를 사용하고 있습니다. 다음 코드는 워크플로 정의 파일입니다.
on:
push:
branches:
- main
paths:
- 'deploy/**'
name: AzureBicepSample
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: azure/login@v1
with:
client-id: '44445555-eeee-6666-ffff-7777aaaa8888'
tenant-id: 'aaaabbbb-0000-cccc-1111-dddd2222eeee'
subscription-id: 'ffff5f5f-aa6a-bb7b-cc8c-dddddd9d9d9d'
- uses: azure/arm-deploy@v1
with:
resourceGroupName: MyResourceGroup
template: ./deploy/main.bicep
워크플로는 다음 오류 메시지를 반환합니다.
Error: Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable. Please make sure to give write permissions to id-token in the workflow.