1 - Management Groups #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---------------------------------------------------------------------------------- | |
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT license. | |
# | |
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | |
# EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES | |
# OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | |
# ---------------------------------------------------------------------------------- | |
name: 1 - Management Groups | |
on: | |
workflow_dispatch: | |
inputs: | |
environmentName: | |
type: string | |
description: Environment name (optional), e.g. CanadaPubSecALZ-main | |
required: false | |
default: cdssnc-main | |
defaults: | |
run: | |
shell: pwsh | |
working-directory: scripts/deployments | |
jobs: | |
management-groups: | |
name: Management Groups | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure PowerShell modules | |
run: | | |
Install-Module Az -Force | |
Install-Module powershell-yaml -Force | |
- name: Deploy Management Groups | |
run: | | |
./RunWorkflows.ps1 ` | |
-DeployManagementGroups ` | |
-EnvironmentName '${{github.event.inputs.environmentName}}' ` | |
-LoginServicePrincipalJson (ConvertTo-SecureString -String '${{secrets.ALZ_CREDENTIALS}}' -AsPlainText -Force) ` | |
-GitHubRepo ${env:GITHUB_REPOSITORY} ` | |
-GitHubRef ${env:GITHUB_REF} |