constellation/.github/actions/login_azure/action.yml

16 lines
481 B
YAML
Raw Normal View History

name: Azure login
2022-05-04 11:52:27 +00:00
description: "Login to Azure & configure az CLI."
inputs:
azure_credentials:
2022-09-14 13:14:26 +00:00
description: "Credentials authorized to create Constellation on Azure."
2022-05-04 11:52:27 +00:00
required: true
runs:
2022-09-14 13:14:26 +00:00
using: "composite"
2022-05-04 11:52:27 +00:00
steps:
2022-09-14 13:14:26 +00:00
# As described at:
# https://github.com/Azure/login#configure-deployment-credentials
- name: Login to Azure
uses: azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
2022-09-14 13:14:26 +00:00
with:
creds: ${{ inputs.azure_credentials }}