skip to Main Content

"ERROR: TF401444: Please sign-in at least once…" in AzureCLI@2 task

I am using below YAML pipeline to create a PR via Azure CLI script:- - task: AzureCLI@2 inputs: azureSubscription: '${{ parameters.serviceConnection }}' scriptType: 'ps' scriptLocation: 'inlineScript' inlineScript: | # Set organization, project, and repository details $organization="https://dev.azure.com/MyOrg" $project="MyProject" $repository="MyRepo" $targetBranch =…

VIEW QUESTION

Nginx – sort and update a docker-compose.yaml with jq

This is my docker-compose file: { "name": "movies-docker-test", "services": { "movies-rp": { "volumes": [ { "type": "volume", "source": "certs", "target": "/etc/nginx/certs", }, { "type": "bind", "source": "/home/nblanchet/jeudi_infra/kubernetes/okd/movies-docker-test/reverse-proxy/wikibase.conf.template", "target": "/etc/nginx/templates/wikibase.conf.template" } ] } } } I'd like to update this file…

VIEW QUESTION
Back To Top
Search