skip to Main Content

Ubuntu – Azure cant login from github actions

Im trying to deploy from github actions using the following yml: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: "Login via Azure CLI" uses: azure/login@v1 with: client-id: GUID tenant-id: GUID subscription-id: GUID but im getting the error: Please…

VIEW QUESTION

Update the Azure App registration web.logoutUrl using Azure CLI

I am using an Azure CLI script to register an application like this: az ad app create --display-name $appName --sign-in-audience AzureADMyOrg --enable-id-token-issuance true --enable-access-token-issuance false --required-resource-accesses @app-resources.json --web-redirect-uris $redirectUris I need to set the front-channel logout URL as well, but…

VIEW QUESTION
Back To Top
Search