Skip to content
Snippets Groups Projects
application.properties 1.74 KiB
Newer Older
  • Learn to ignore specific revisions
  • # Copyright © Microsoft Corporation
    
    #
    # 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.
    #
    LOG_PREFIX=register
    
    server.servlet.contextPath=/api/register/v1
    service.domain.name=${service_domain_name}
    
    # Azure AD configuration
    azure.activedirectory.client-id=${aad_client_id}
    azure.activedirectory.AppIdUri=api://${azure.activedirectory.client-id}
    azure.activedirectory.session-stateless=true
    
    azure.clientId=${AZURE_CLIENT_ID}
    azure.clientSecret=${AZURE_CLIENT_SECRET}
    azure.tenantId=${AZURE_TENANT_ID}
    azure.subscriptionId=${AZURE_SUBSCRIPTION_ID}
    azure.resourceGroupName=${AZURE_RESOURCE_GROUP_NAME}
    
    
    
    # Azure CosmosDB configuration
    azure.cosmosdb.database=${cosmosdb_database}
    
    # Azure KeyVault configuration
    azure.keyvault.url=${KEYVAULT_URI}
    
    azure.cryptoKey.identifier=${KEY_IDENTIFIER}
    
    
    # Azure App Insights configuration
    azure.application-insights.instrumentation-key=${appinsights_key}
    
    # Application name
    spring.application.name=register-azure
    
    # Cosmosdb container name
    registerAction.container.name=RegisterAction
    registerDdms.container.name=RegisterDdms
    
    registerSubscription.container.name=RegisterSubscription
    
    tenantInfo.container.name=TenantInfo
    
    
    #logging configuration
    logging.transaction.enabled=true
    logging.slf4jlogger.enabled=true
    
    logging.mdccontext.enabled=true