22 lines
588 B
Text
22 lines
588 B
Text
|
// This is your primary NIC.
|
||
|
resource nic1 'Microsoft.Network/networkInterfaces@2020-06-01' = {
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
This Bicep file assumes the key vault already exists and
|
||
|
is in same subscription and resource group as the deployment.
|
||
|
*/
|
||
|
param existingKeyVaultName string
|
||
|
|
||
|
resource test 'Microsoft.AAD/domainServices@2021-03-01' = {
|
||
|
name: 'asdfsdf'
|
||
|
// this is a comment
|
||
|
properties: {/*comment*/
|
||
|
domainConfigurationType/*comment*/:/*comment*/'as//notacomment!d/* also not a comment */fsdf'// test!/*
|
||
|
/* multi
|
||
|
line
|
||
|
comment */ domainName: /*
|
||
|
asdf*/'test'
|
||
|
// comment
|
||
|
}
|
||
|
}
|