Skip to content

Commit

Permalink
Change credentials for Github Action for stop and start cluster (#1536)
Browse files Browse the repository at this point in the history
Co-authored-by: Automatic Update <[email protected]>
  • Loading branch information
sveinpj and Automatic Update authored Dec 9, 2024
1 parent 816e885 commit 4fcd7f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/startclusters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
jobs:
start-dev-clusters:
runs-on: ubuntu-latest
environment: operations
environment: dev
env:
KV_GROUP: common-dev
ENVIROMENT: dev
Expand All @@ -19,9 +19,9 @@ jobs:
- name: 'Az CLI login'
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
client-id: ${{ vars.AZURE_CLIENT_ID }}
tenant-id: ${{ vars.AZURE_TENANT_ID }}
subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }}

- name: Get GitHub Public IP
id: github_public_ip
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/stopclusters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
stop-dev-clusters:
runs-on: ubuntu-latest
environment: operations
environment: dev
env:
KV_GROUP: common-dev
ENVIROMENT: dev
Expand All @@ -21,9 +21,9 @@ jobs:
- name: 'Az CLI login'
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
client-id: ${{ vars.AZURE_CLIENT_ID }}
tenant-id: ${{ vars.AZURE_TENANT_ID }}
subscription-id: ${{ vars.AZURE_SUBSCRIPTION_ID }}

- name: Get GitHub Public IP
id: github_public_ip
Expand Down

0 comments on commit 4fcd7f7

Please sign in to comment.