You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Pull Request
## Description
Improve Bicep templating to provide all inputs as potential templating
sources. This allows dynamically supplying inputs for templates without
the need to specify them in the Bicep module config. Sensitive values
are obfuscated.
## License
By submitting this pull request, I confirm that my contribution is made
under the terms of the projects associated license.
Copy file name to clipboardExpand all lines: src/ALZ/ALZ.psd1
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ Included Cmdlets:
40
40
- Deploy-Accelerator: Deploys the Azure Landing Zone accelerator to your Azure subscription.
41
41
- Grant-SubscriptionCreatorRole: Grants the Subscription Creator role to a specified user or service principal.
42
42
- Remove-PlatformLandingZone: Removes the deployed Azure Landing Zone from your Azure subscription
43
+
- New-AcceleratorFolderStructure: Creates a new folder structure for the Azure Landing Zone accelerator with necessary configuration files.
43
44
'@
44
45
45
46
CompatiblePSEditions='Core'
@@ -85,7 +86,8 @@ Included Cmdlets:
85
86
'Test-AcceleratorRequirement',
86
87
'Deploy-Accelerator',
87
88
'Grant-SubscriptionCreatorRole',
88
-
'Remove-PlatformLandingZone'
89
+
'Remove-PlatformLandingZone',
90
+
'New-AcceleratorFolderStructure'
89
91
)
90
92
91
93
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
0 commit comments