MyFirstBrain/Technik/BICEP.md

16 lines
311 B
Markdown
Raw Normal View History

2024-07-24 10:35:16 +02:00
#### Deplay a storage account :
az deployment group create \
--resource-group <resource-group-name> \
--template-file <filename>.bicep \
--parameters @<filename>.parameters.json
#### Validate the deployment:
az storage account show \
--name <storage-account-name> \
--resource-group <resource-group-name>
2024-07-24 10:40:57 +02:00