File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 32
32
# https://github.com/azure/login
33
33
34
34
with :
35
- client-id : $
36
- tenant-id : $
37
- subscription-id : $
35
+ client-id : ${{ secrets.AZURE_CLIENT_ID }}
36
+ tenant-id : ${{ secrets.AZURE_TENANT_ID }}
37
+ subscription-id : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
38
38
# We also need to ensure that enable-AzPSSession is true. This is important for
39
39
# using OIDC in Azure. If we were to pass in a client secret instead, we would not need
40
40
# this setting enabled
45
45
# https://github.com/azure/arm-deploy
46
46
uses : azure/arm-deploy@v1
47
47
with :
48
- subscriptionId : $
49
- resourceGroupName : $
48
+ subscriptionId : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
49
+ resourceGroupName : ${{ secrets.AZURE_RG }}
50
50
template : ./InfrastructureAsCode/main.bicep
51
51
# Use the environment variable called targetEnv
52
- parameters : environment=$
52
+ parameters : environment=$targetEnv
You can’t perform that action at this time.
0 commit comments