27 строки
574 B
Bicep
27 строки
574 B
Bicep
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
// Bicep documentation examples
|
|
|
|
@description('The name of the resource.')
|
|
param name string
|
|
|
|
@description('The location resources will be deployed.')
|
|
param location string = resourceGroup().location
|
|
|
|
// An example Service Bus namespace.
|
|
resource ns 'Microsoft.ServiceBus/namespaces@2022-10-01-preview' = {
|
|
name: name
|
|
location: location
|
|
identity: {
|
|
type: 'SystemAssigned'
|
|
}
|
|
sku: {
|
|
name: 'Standard'
|
|
}
|
|
properties: {
|
|
disableLocalAuth: true
|
|
minimumTlsVersion: '1.2'
|
|
}
|
|
}
|