components-contrib/.github/infrastructure/conformance/azure/conf-test-azure-cosmosdb-ta...

76 lines
2.3 KiB
Bicep

// ------------------------------------------------------------------------
// Copyright 2021 The Dapr Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ------------------------------------------------------------------------
param cosmosDbTableAPIName string
param rgLocation string = resourceGroup().location
param confTestTags object = {}
resource cosmosDbTable 'Microsoft.DocumentDB/databaseAccounts@2022-02-15-preview' = {
name: cosmosDbTableAPIName
location: rgLocation
kind: 'GlobalDocumentDB'
identity: {
type: 'None'
}
properties: {
publicNetworkAccess: 'Enabled'
enableAutomaticFailover: false
enableMultipleWriteLocations: false
isVirtualNetworkFilterEnabled: false
virtualNetworkRules: []
disableKeyBasedMetadataWriteAccess: false
enableFreeTier: false
enableAnalyticalStorage: false
analyticalStorageConfiguration: {
schemaType: 'WellDefined'
}
databaseAccountOfferType: 'Standard'
defaultIdentity: 'FirstPartyIdentity'
networkAclBypass: 'None'
disableLocalAuth: false
consistencyPolicy: {
defaultConsistencyLevel: 'BoundedStaleness'
maxIntervalInSeconds: 86400
maxStalenessPrefix: 1000000
}
locations: [
{
locationName: rgLocation
failoverPriority: 0
isZoneRedundant: false
}
]
cors: []
capabilities: [
{
name: 'EnableTable'
}
]
ipRules: []
backupPolicy: {
type: 'Periodic'
periodicModeProperties: {
backupIntervalInMinutes: 240
backupRetentionIntervalInHours: 8
backupStorageRedundancy: 'Local'
}
}
networkAclBypassResourceIds: []
diagnosticLogSettings: {
enableFullTextQuery: 'None'
}
}
}
output cosmosDbTableAPIName string = cosmosDbTable.name