Created
April 13, 2025 18:39
-
-
Save riosengineer/bf08ff616b6854835a161c86626121fc to your computer and use it in GitHub Desktop.
Deployment Stacks Demo
This file contains hidden or 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
using 'main.bicep' | |
param location = 'uksouth' | |
param tags = { | |
Environment: 'demo' | |
Project: 'Deployment Stacks' | |
'hidden-title': 'Managed' | |
} | |
param vnetAddressPrefix = [ | |
'10.0.0.0/24' | |
] | |
param snetAddressPrefix = '10.0.0.0/28' | |
// az bicep upgrade | |
// az stack sub create --name 'az-stack-uks-demo' --location 'uksouth' --template-file 'main.bicep' --parameters 'main.bicepparam' --action-on-unmanage 'deleteResources' --deny-settings-mode 'denyWriteAndDelete' --deny-settings-apply-to-child-scopes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment