Anton
V.
Projects and
blogs
Random
Code
editors
Bicep Editor
Bicep Editor
A simple online editor for the Bicep language.
untitled.bicep
— Bicep Editor
File
New...
Open...
Save
Save as...
Reload
Edit
Copy all content to clipboard
Clear content
View
Line numbers
Word wrap
param location string = 'westus' resource myStorageAccount 'Microsoft.Storage/storageAccounts@2021-01-01' = { name: 'mystorageaccount' location: location sku: { name: 'Standard_LRS' } kind: 'StorageV2' }
1
param
location
string
=
'westus'
2
3
resource
myStorageAccount
'Microsoft.Storage/storageAccounts@2021-01-01'
= {
4
name
:
'mystorageaccount'
5
location
:
location
6
sku
: {
7
name
:
'Standard_LRS'
8
}
9
kind
:
'StorageV2'
10
}
Bicep Editor