Skip to content

Commit cc220d8

Browse files
committed
update the secrets
1 parent 8a3ebe3 commit cc220d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
# https://github.com/azure/login
3333
- uses: azure/[email protected]
3434
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 }}
3838
# We also need to ensure that enable-AzPSSession is true. This is important for
3939
# using OIDC in Azure. If we were to pass in a client secret instead, we would not need
4040
# this setting enabled
@@ -45,8 +45,8 @@
4545
# https://github.com/azure/arm-deploy
4646
uses: azure/arm-deploy@v1
4747
with:
48-
subscriptionId: $
49-
resourceGroupName: $
48+
subscriptionId: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
49+
resourceGroupName: ${{ secrets.AZURE_RG }}
5050
template: ./InfrastructureAsCode/main.bicep
5151
# Use the environment variable called targetEnv
52-
parameters: environment=$
52+
parameters: environment=$targetEnv

0 commit comments

Comments
 (0)