23 lines
535 B
Markdown
23 lines
535 B
Markdown
### Deploy a storage account :
|
|
```text
|
|
az deployment group create \
|
|
--resource-group <resource-group-name> \
|
|
--template-file <filename>.bicep \
|
|
--parameters @<filename>.parameters.json
|
|
```
|
|
|
|
### Validate the deployment:
|
|
```text
|
|
az storage account show \
|
|
--name <storage-account-name> \
|
|
--resource-group <resource-group-name>
|
|
```
|
|
|
|
#### Kommentare :
|
|
// This is your primary NIC.
|
|
|
|
**Mehrspaltige Kommentare**
|
|
|
|
/* This Bicep file assumes the key vault already exists and
|
|
is in same subscription and resource group as the deployment. \*/
|