MyFirstBrain/Technik/BICEP.md

23 lines
536 B
Markdown
Raw Normal View History

2024-07-24 20:12:03 +02:00
#### Deploy a storage account :
2024-07-24 10:46:10 +02:00
```text
2024-07-24 10:35:16 +02:00
az deployment group create \
--resource-group <resource-group-name> \
--template-file <filename>.bicep \
--parameters @<filename>.parameters.json
2024-07-24 10:46:10 +02:00
```
2024-07-24 10:35:16 +02:00
2024-07-24 10:46:10 +02:00
### Validate the deployment:
```text
2024-07-24 10:35:16 +02:00
az storage account show \
--name <storage-account-name> \
--resource-group <resource-group-name>
2024-07-24 10:46:10 +02:00
```
#### Kommentare :
// This is your primary NIC.
2024-07-24 10:35:16 +02:00
2024-07-24 10:46:10 +02:00
**Mehrspaltige Kommentare**
2024-07-24 10:40:57 +02:00
2024-07-24 10:46:10 +02:00
/* This Bicep file assumes the key vault already exists and
is in same subscription and resource group as the deployment. \*/