23 строки
504 B
Bicep
23 строки
504 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 Redis Enterprise cache.
|
|
resource cache 'Microsoft.Cache/redisEnterprise@2023-11-01' = {
|
|
name: name
|
|
location: location
|
|
sku: {
|
|
name: 'Enterprise_E10'
|
|
}
|
|
properties: {
|
|
minimumTlsVersion: '1.2'
|
|
}
|
|
}
|