Installing Invictus Dashboard
Prerequisites
obtain access SharedTo access the resources stored on Azure Storage and Azure Container Registry you have to request an SAS-token and ACR Password from coditproducts@codit.eu.
Container revisionsWe use Multiple Revision mode in our Container App deployments, which means that older revisions could clutter the Container App Environment. We provide a clean-up script that should be run after logging in on the correct subscription, but can be ran in Azure DevOps Pipelines as well.
Include VNET support Shared
Invictus includes functionality which allows all its resources to run within an Azure Virtual Network (VNET).
Required deployment
-
An Azure Virtual Network
- Including two subnets, one each for:
- Private Endpoints
- Container App Environment
- The subnets must have the following services enabled
Microsoft.AzureCosmosDBMicrosoft.EventHubMicrosoft.KeyVaultMicrosoft.ServiceBusMicrosoft.Storage
- The Container App subnet must also have the delegation
Microsoft.App/environments
- Including two subnets, one each for:
-
Private DNS Zones (Bicep template)
privatelink.azurecr.ioprivatelink.blob.core.windows.netprivatelink.file.core.windows.netprivatelink.mongo.cosmos.azure.comprivatelink.queue.core.windows.netprivatelink.servicebus.windows.netprivatelink.table.core.windows.netprivatelink.table.cosmos.azure.comprivatelink.vaultcore.azure.netprivatelink.{regionName}.azurecontainerapps.io
- To be able to deploy the app code from an Azure DevOps pipeline you will need a self hosted agent running on the same VNET with the following software installed:
- PowerShell
- Azure PowerShell
- Bicep CLI
Required role assignment
If the Invictus resources and the VNET are on different resource groups, then you need to assign the role of
Network Contributorto the Invictus resource group onto the VNET resource group.-
Download
Include the Dashboard in your release package to deploy the Invictus Dashboard together with your customer solution.
Save installation script to your repository Shared
The
Invictus-GetSources.ps1script will pull the latest Invictus resources needed to deploy the Dashboard.Add variables to variable group Shared
Invictus installation requires secrets for authentication. Codit Software provides these for you. Create a variable group for them:
{'{prefix}'}.Invictus.InstallationInvictus.Installation.StorageAccount.Name:invictusreleasesInvictus.Installation.StorageAccount.Dashboard.SasToken: value provided by Codit SoftwareInvictus.Installation.StorageAccount.Framework.SasToken: value provided by Codit Software (if you're also deploying the Framework)Infra.Environment.ACRUsername: value provided by Codit SoftwareInfra.Environment.ACRPassword: value provided by Codit Software
Add YAML build pipeline
Add a YAML pipeline to build the Invictus for Azure Dashboard. Change the following example file according to your needs, for example change the trigger path:
paths:include:- /src/customer.azure.invictusFull YAML build pipeline example
pr: nonetrigger:branches:include:- main- feature/*paths:include:- /src/customer.azure.invictusparameters:- name: VersiondisplayName: Invictus Versiontype: stringdefault: '*'- name: useBetadisplayName: Use Betatype: stringdefault: $Falsepool:vmImage: 'windows-latest'stages:- stage: PackagedisplayName: PackagedependsOn: []variables:- group: prefix.invictus.installationjobs:- job: publishdisplayName: Build and Publish Dashboardsteps:- checkout: selfclean: truepersistCredentials: true- task: PowerShell@2displayName: 'Pull Invictus sources'inputs:targetType: filePathfilePath: './scripts/Invictus-GetSources.ps1'arguments: >-StorageAccountName '$(Invictus.Installation.StorageAccount.Name)'-StorageSasToken '$(Invictus.Installation.StorageAccount.Dashboard.SasToken)'-StorageContainerName 'dashboard-v2'-SaveLocation '$(Build.ArtifactStagingDirectory)'-UseBeta ${{parameters.useBeta}}-Version ${{ parameters.version }}- task: PublishPipelineArtifact@1inputs:TargetPath: $(Build.ArtifactStagingDirectory)ArtifactName: dashboard-v2publishLocation: 'pipeline'Deploy
Create variable group Shared
Create a variable group (recommended: {prefix}.Invictus.{env}) for each the environments. The deployment uses this variable group and edits/adds variables based on the Bicep deployment output.
permit build service access to variable groupsMake sure the Project Collection Build Service has Administrator access to these variable groups (Pipelines > Library > Security)
Use
Deploy.ps1script for deploymentThe
Deploy.ps1PowerShell script is available in the downloaded Invictus sources. This should be the main point of contact for deploying Invictus products.Least-privileged Azure role assignments for the deploying identity
The identity running the Bicep deployment (the service principal used by your Azure DevOps service connection) needs the following least-privileged roles assigned on the target resource group or subscription:
Role Why It's Needed Container Apps ContributorCreate/update Container Apps environments, apps, authentication configurations and job definitions. Azure Event Hubs OwnerCreate/update Event Hubs namespaces, hubs and network rule sets. Container Registry ContributorCreate/update Azure Container Registry instances, locks and network settings. DocumentDB Account ContributorCreate/update Cosmos DB accounts, MongoDB databases and collections. Managed Identity ContributorCreate/update user-assigned managed identities for Container Apps and functions. Key Vault AdministratorCreate/update Key Vaults, access policies and network ACLs. Log Analytics ContributorCreate/update Log Analytics workspaces and list workspace keys. Monitoring ContributorCreate/update Application Insights components and associated locks. Network ContributorCreate/update private endpoints, VNET subnets and private DNS zone groups. ReaderRead existing Private DNS zones when linking DNS zone groups for private endpoints. Service Bus Data OwnerCreate/update Service Bus namespaces, queues and network rule sets. Storage Account ContributorCreate/update storage accounts, file shares, blob and table services. User Access AdministratorCreate role assignments ( Microsoft.Authorization/roleAssignments) and resource locks.Mandatory Parameters
Argument name Description arcNameThe name of the Azure Container Registry name to deploy the container images to. (Make sure to override also the containerRegistryNameBICEP parameter if you want a custom name.)arcUsernameThe username credential to authenticate the Docker CLI. arcPasswordThe password credential to authenticate into the Docker CLI. resourcePrefixPrefix used for deployed Azure resources (ex. invictus-{prefix}-vlt)resourceGroupNameName of Azure resource group where Invictus deploys to. variableGroupNameDevOps variable group to write the Bicep outputs to (ex. Invictus_CosmosDb_DbName)azureActiveDirectoryClientIdSee Microsoft Entra ID Setup if enabled. azureActiveDirectoryTenantIdSee Microsoft Entra ID Setup if enabled. azureActiveDirectoryClientSecretSee Microsoft Entra ID Setup if enabled. azureActiveDirectoryAudienceSee Microsoft Entra ID Setup if enabled. performSqlDataMigrationIf value is 1 the data migration process will run, migrating SQL data to Cosmos DB. If the value is 0, the installation skips this process. See the migration guide for more details. Once the installation performed the data migration and you verified the outcome, set this value to0so the installation skips the migration process for all future deployments.flowDataTTLInDaysAmount of days flow traces can live in the database
See import flow traces.isProvisionedCosmosIf the value is 1, the installation deploys a Cosmos DB with provisioned throughput. Otherwise, a serverless Cosmos DB. How to choose between provisioned and serverless. identityProviderApplicationIdSee Container Authentication. identityProviderClientSecretSee Container Authentication. useBetaIndicates the environment of the Azure Container App registry where the deployment gets its container images. Optional Parameters
Argument name Default value Description artifactsPath$PSScriptRootPath on the DevOps agent where you downloaded the Invictus artifacts
(publish and download build artifacts)resourceGroupLocation'West Europe' Azure location where you want the Invictus resources deployed. isAdDisabledFalseBoolean flag to activate Entra ID authentication in the Dashboard. additionalTemplateParameters[] Optional named parameters for the Bicep template you wish to override. More on this below. versionlatestVersion of the published Invictus artifacts that the deployment should download and deploy on the client environment. Full YAML task example
- task: AzureCLI@2displayName: 'Azure CLI'env:SYSTEM_ACCESSTOKEN: $(System.AccessToken)inputs:azureSubscription: '[YOUR_SERVICE_CONNECTION]'scriptType: 'pscore'scriptLocation: 'inlineScript'inlineScript: |# Determine where the the provided Invictus 'Deploy.ps1' script is located$artifactsPath = ${{ variables['Pipeline.Workspace'] }} + '/_build/dashboard'$scriptPath = $artifactsPath + '/Deploy.ps1'& $scriptPath `-artifactsPath $artifactsPath `-acrPath 'invictusreleases.azurecr.io' `-useBeta false `-acrUsername 'admin' `-acrPassword '<pass>' `-resourcePrefix 'dev' `-resourceGroupName 'my-client-dev-rg' `-variableGroupName 'My.Client.Dev' `-performSqlDataMigration 0 `-isProvisionedCosmos 0 `-azureActiveDirectoryClientId '4b559bfb-871a-4013-bce9-829e3aeb6bdd' `-azureActiveDirectoryTenantId '97a944a1-04a0-45d2-b2f3-c424755c4167' `-azureActiveDirectoryClientSecret '<pass>' `-azureActiveDirectoryAudience 'https://contoso.com' `-identityProviderApplicationId 'c84d34ea-f169-4787-a4af-81750debda0b' `-identityProviderClientSecret '<pass>' `-isProvisionedCosmos 1 `-flowDataTTLInDays 90Full YAML release pipeline example
pr: nonetrigger: noneresources:pipelines:# Name of the pipeline resource inside this workflow. Used to reference the pipeline resources later on (e.g. download artifacts).- pipeline: _build# Name of the pipeline in Azure Pipelinessource: 'customer.azure.invictus.dashboard.build'trigger: trueparameters:- name: "Version"type: stringdefault: "latest"- name: "UseBeta"type: stringdefault: "$false"pool:vmImage: 'ubuntu-latest'stages:- stage: deploy_devdisplayName: 'Deploy to Development'variables:- group: infra.dev- group: prefix.invictus.dev- group: prefix.invictus.installationjobs:- deployment: deploy_developmentdisplayName: 'Deploy to Development'environment: Developmentstrategy:runOnce:deploy:steps:- download: '_build'displayName: Download Artifact- task: AzureCLI@2env:SYSTEM_ACCESSTOKEN: $(System.AccessToken)inputs:azureSubscription: 'NameOfYourServiceConnection'scriptType: 'pscore'scriptLocation: 'scriptPath'ScriptPath: '$(Pipeline.Workspace)/_build/dashboard-v2/Deploy.ps1'ScriptArguments: '-version ${{parameters.Version}} -useBeta ${{parameters.UseBeta}} -acrPath "invictusreleases.azurecr.io" -acrUsername $(Infra.Environment.ACRUsername) -acrPassword $(Infra.Environment.ACRPassword) -resourcePrefix $(Infra.Environment.ResourcePrefix) -artifactsPath $(Pipeline.Workspace)/_build/dashboard-v2 -resourceGroupName $(Infra.Environment.ResourceGroup) -variableGroupName invictus.$(Infra.Environment.ShortName) -devOpsObjectId "$(Infra.DevOps.Object.Id)" -azureActiveDirectoryClientId "$(Infra.AzAD.Client.Id)" -azureActiveDirectoryTenantId "$(Infra.DevOps.Tenant.Id)" -azureActiveDirectoryClientSecret "$(Infra.AzAD.Client.Secret)" -azureActiveDirectoryAudience "$(Infra.AzAd.Audience)" -identityProviderApplicationId "$(Infra.AzAD.Client.IdentityProviderApplicationId)" -identityProviderClientSecret "$(Infra.AzAD.Client.IdentityProviderClientSecret)" -performSqlDataMigration 0 -isProvisionedCosmos 0 -flowDataTTLInDays 90 -containerAppsEnvironmentLocation "$(Infra.Environment.ContainerAppsEnvironmentLocation)"'- stage: deploy_prddisplayName: 'Deploy to Production'dependsOn: deploy_accvariables:- group: infra.prd- group: prefix.invictus.prd- group: prefix.invictus.installationjobs:- deployment: deploy_prddisplayName: 'Deploy to Production'environment: Productionstrategy:runOnce:deploy:steps:- download: '_build'displayName: Download Artifact- task: AzureCLI@2env:SYSTEM_ACCESSTOKEN: $(System.AccessToken)inputs:azureSubscription: 'NameOfYourServiceConnection'scriptType: 'pscore'scriptLocation: 'scriptPath'ScriptPath: '$(Pipeline.Workspace)/_build/dashboard-v2/Deploy.ps1'ScriptArguments: '-version ${{parameters.Version}} -useBeta ${{parameters.UseBeta}} -acrPath "invictusreleases.azurecr.io" -acrUsername $(Infra.Environment.ACRUsername) -acrPassword $(Infra.Environment.ACRPassword) -resourcePrefix $(Infra.Environment.ResourcePrefix) -artifactsPath $(Pipeline.Workspace)/_build/dashboard-v2 -resourceGroupName $(Infra.Environment.ResourceGroup) -variableGroupName invictus.$(Infra.Environment.ShortName) -devOpsObjectId "$(Infra.DevOps.Object.Id)" -azureActiveDirectoryClientId "$(Infra.AzAD.Client.Id)" -azureActiveDirectoryTenantId "$(Infra.DevOps.Tenant.Id)" -azureActiveDirectoryClientSecret "$(Infra.AzAD.Client.Secret)" -azureActiveDirectoryAudience "$(Infra.AzAd.Audience)" -identityProviderApplicationId "$(Infra.AzAD.Client.IdentityProviderApplicationId)" -identityProviderClientSecret "$(Infra.AzAD.Client.IdentityProviderClientSecret)" -performSqlDataMigration 0 -isProvisionedCosmos 0 -flowDataTTLInDays 90 -containerAppsEnvironmentLocation "$(Infra.Environment.ContainerAppsEnvironmentLocation)"'Bicep Template Parameters
Showing 121 parametersName Description Tags acaIdentityNamedefault:invictus-${resourcePrefix}-aca-identityThe name of the user-assigned identity that pulls the container images from the Azure Container Registry.
container-apps alertingAppInsightsNamedefault:invictus-${resourcePrefix}-alertingappinsThe name of the Azure Application Insights resource that holds the alerts which the Dashboard stores for client-created flows.
monitoring allowStorageAccountSharedKeyAccessdefault:nullIndicates whether the shared Azure Storage Account allows authentication via a shared key access.
storagesecurity appInsightsNamedefault:invictus-${resourcePrefix}-appinsThe name of the Azure Application Insights resource that tracks the general telemetry of the Dashboard backend infrastructure.
monitoring appInsightsSamplingPercentagedefault:1The sampling percentage for the Azure Application Insights that tracks the general telemetry of the Dashboard.
monitoring auditsCollectionThroughputdefault:1000The collection throughput (RU/s) for the audits MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling azureActiveDirectoryAudienceThe allowed audience when the Dashboard interacts with the client's the Microsoft Entra ID during managing Azure Logic Apps alerts.
security azureActiveDirectoryClientIdThe application ID of the Microsoft Entra ID app registration that facilitates authentication towards the client's Microsoft Entra ID resource, useful when the Dashboard is configured for Microsoft Entra ID signin authentication.
security azureActiveDirectoryClientSecretThe client secret of the Microsoft Entra ID app registration that facilitates authentication towards the client's Microsoft Entra ID resource, useful when the Dashboard is configured for Microsoft Entra ID signin authentication.
security azureActiveDirectoryTenantIdThe tenant ID of the Microsoft Entra ID app registration that facilitates authentication towards the client's Microsoft Entra ID resource, useful when the Dashboard is configured for Microsoft Entra ID signin authentication.
security azureWebJobsWorkFlowEventsClearFunctionDisableddefault:truedeprecated since: v6.2, will be removed in v7, clearing happens via Cosmos DB for MongoDB TTL policies.Indicates whether the Azure Functions timer trigger should be disabled, meaning the Azure Logic Apps workflow Dashboard backend storage won't be cleared.
storagedeprecated cacheImportJobScalingThe Azure Container App scaling options for the cache job.
container-appsscaling caeVnetInfraRgNamedefault:invictus-${resourcePrefix}-cae-infraThe name of the Azure Container Apps infrastructure resource group (when VNET is enabled).
container-appsnetworkingvnet containerAppEnvironmentSubnetNameThe name of the subnet to form the network rules of the Azure Container App environment, useful for VNET deployments.
networkingvnetcontainer-apps containerAppEnvironmentSubnetsA list of subnet names to form the network rules of all the Azure Container App resources, useful for VNET deployments.
networkingvnetcontainer-apps containerAppsEnvironmentLocationdefault:resourceGroup().locationThe Azure location for the Azure Container Apps and their environment.
container-apps containerAppsEnvironmentNamedefault:invictus-${resourcePrefix}-caeThe name of the Azure Container App environment.
container-apps containerRegistryNameThe name of the Azure Container Apps registry that hosts the Dashboard's container images.
container-apps containerRegistryUrldefault:${resourcePrefix}.acr.azurecr.ioThe server URL of the Azure Container Apps registry that hosts the Dashboard's container images.
container-apps cosmosAccountNamedefault:invictus-${resourcePrefix}-cosmosThe name of the Azure Cosmos DB resource that acts as the main backend storage for the Dashboard. (The deployment ads a suffix
-serverlessor-provisionedbased on the Azure Cosmos DB pricing tier).storage cosmosDatabaseNamedefault:InvictusDashboardThe name of the singleton database in the Azure Cosmos DB resource that acts as the main backend storage for the Dashboard.
storage cosmosDbSubnetsA list of subnet names to form the Azure Cosmos DB for MongoDB resource, useful for VNET deployments.
networkingvnetstorage customApplicationIdsdefault:[]A list of additional IDs referring to custom Microsoft Entra ID applications that should also be able to access the Azure Container Apps hosting the Dashboard.
security customTagsdefault:{}A set of Azure resource tags to apply to all to the deployed Invictus resources.
governance dashboardnew since v6.3The options to configure the Dashboard web application.
webnetworking dashboardGatewayScalingThe Azure Container App scaling options for the Dashboard Gateway backend/back office.
container-appsscaling dashboardScalingThe Azure Container App scaling options for the Dashboard web application.
container-appsscaling dashboardSettingsCollectionThroughputdefault:1000The collection throughput (RU/s) for the Dashboard settings MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling dataFactoryEventHubNamedefault:invictus-${resourcePrefix}-df-evhbThe name of the Azure Event Hub for the import job where Azure Data Factory pipeline diagnostic traces are send to.
messagingimporting datafactoryReceiverScalingThe Azure Container App scaling options for the import job that imports diagnostic traces from Azure Data Factory pipelines.
container-appsscalingimporting dataMergeWorkflowEventHubNamedefault:invictus-${resourcePrefix}-mergeddata-evhbThe name of the Azure Event Hub where the merge job pushes finalized flow traces, where the store job listens.
container-apps dbImportJobScalingThe Azure Container App scaling options for the merge job.
container-appsscaling devOpsObjectIddefault:deployer().objectIdThe object ID associated with the service principal of the enterprise application that the Azure DevOps service connection is created for.
security disableStorageAccountPublicNetworkAccessdefault:falseIndicates whether the shared Azure Storage Account should disable public network access. If
true, only private endpoints or VNET integration are allowed.storagenetworkingsecurityvnet dnsZoneResourceGroupNamedefault:resourceGroup().nameThe name of the Azure resource group where the private DNS zone deploys to.
networkingvnet dnsZoneSubscriptionIddefault:subscription().subscriptionIdThe Azure subscription ID to control the private DNS zone throughout, useful for VNET deployments.
networkingvnet enableVnetSupportdefault:falseFeature flag to control whether the Dashboard deploys within a VNET.
networkingvnet eventHubAutoInflatedefault:falseIndicates whether the Azure Event Hubs namespace should automatically scale up. More on Azure Event Hubs throughput units.
messagingscaling eventHubMaxThroughputUnitsdefault:0The maximum amount of Azure Event Hubs throughput units for the namespace. More on Azure Event Hubs throughput units.
messagingscaling eventHubMessageRetentionInDaysdefault:1The amount of days Azure Event Hubs messages will be retained on all the hubs throughout More on Microsoft documentation on Azure Event Hubs properties.
messaging eventHubNamedefault:invictus-${resourcePrefix}-evhbThe name of the Azure Event Hub within the namespace that receives diagnostic traces from client Azure Logic Apps with Consumption plan.
messagingimporting eventHubNamespaceNamedefault:invictus-${resourcePrefix}-evnmThe name of the Azure Event Hubs namespace resource that acts as the backend event sink system for notifications within the Dashboard backend infrastructure.
messaging eventHubNameV2default:invictus-${resourcePrefix}-evhb-v2The name of the Azure Event Hub within the namespace that receives diagnostic traces from client Azure Logic Apps with Standard plan.
messagingimporting eventHubSkuCapacitydefault:1The limit of the chosen pricing tier of the Azure Event Hubs namespace. More on Azure Event Hubs quotas and limits.
messaging eventHubSkuNamedefault:enableVnetSupport ? 'Standard' : 'Basic'The pricing tier of the Azure Event Hubs namespace that acts as the backend event sink system for notifications within the Dashboard backend infrastructure.
messaging eventHubSubnetsA list of subnet names to form the Azure Event Hubs namespace resource, useful for VNET deployments.
networkingvnet flowActivityIntervalInMinutesdefault:55The time period threshold (in minutes) to update the active flow traces watermark during finalizing pending flow traces in the merge job.
monitoring flowBlobArchiverFunctionCrondefault:0 0 */3 * * *deprecated since: v6.2, will be removed in v7, clearing happens via Cosmos DB for MongoDB TTL policies.The CRON expression that represents the time period in which flow trace information is archived.
storagedeprecated flowDataCollectionThroughputdefault:2000The collection throughput (RU/s) for the flow traces MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling flowDataTTLInDaysThe maximum amount of days the flow traces stay remain in the Dashboard backend storage.
storage flowhandlerScalingThe Azure Container App scaling options for the Flow Handler.
container-appsscaling folderFlowsCollectionThroughputdefault:1000The collection throughput (RU/s) for the flow folders MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling genericEventHubNamedefault:invictus-${resourcePrefix}-genericreceiver-evhbThe name of the Azure Event Hub for the import job that programmatically imports flow traces via Azure Event Hubs.
messagingimporting genericReceiverScalingThe Azure Container App scaling options for the import job that programmatically imports diagnostic traces via Azure Event Hubs.
container-appsscalingimporting groupsCollectionThroughputdefault:1000The collection throughput (RU/s) for the Microsoft Entra ID group references MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling hashCacheClearFunctionCrondefault:0 00 03 * * *deprecated since: v6.2, will be removed in v7, clearing happens via Azure Storage Account policies.The CRON expression that represents the time period in which to clear the Dashboard storage backend cache.
storagedeprecated httpReceiverScalingThe Azure Container App scaling options for the import job that programmatically imports diagnostic traces via a HTTP endpoint.
container-appsscalingimporting identityProviderApplicationIdThe application ID of the Microsoft Entra ID app registration that facilitates managed identity authentication for the Azure Container Apps, hosting the Dashboard.
security identityProviderClientSecretThe client secret of the Microsoft Entra ID app registration that facilitates managed identity authentication for the Azure Container Apps, hosting the Dashboard.
security importJobScalingThe Azure Container App scaling options for the import job that imports diagnostic traces from Azure Logic Apps.
container-appsscalingimporting invictusCacheImportJobFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/caching.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the cache job.
container-apps invictusCacheImportJobFunctionNamedefault:inv-${resourcePrefix}-cacheimportjobThe name of the Azure Container App deployed for the Dashboard backend infrastructure that handles internal caching during the importing of diagnostic traces of client resources.
container-apps invictusDashboardGatewayFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/dashboardgateway:${version}-${date}The URL that navigates to the Azure Container App image of the Dashboard Gateway that acts as the backend/back office of the web application.
container-apps invictusDashboardGatewayFunctionNamedefault:inv-${resourcePrefix}-dashboardgatewayThe name of the Azure Container App deployed for the Dashboard Gateway that acts as the backend/back office of the web application.
container-apps invictusDashboardWebAppLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/dashboard:${version}-${date}The URL that navigates to the Azure Container App image of the Dashboard web application.
container-apps invictusDashboardWebAppNamedefault:inv-${resourcePrefix}-dashboard-v2The name of the Azure Container App deployed for the Dashboard web application.
container-appsweb invictusDatabaseManagerFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/databasemanager.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the store job.
container-apps invictusDatabaseManagerFunctionNamedefault:inv-${resourcePrefix}-db-importjobThe name of the Azure Container App deployed for the store job that eventually stores the imported flow trace to the Dashboard backend storage.
container-apps invictusDataFactoryReceiverFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/datafactoryreceiver.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the import job that imports diagnostic traces from Azure Data Factory pipelines.
container-appsimporting invictusDataFactoryReceiverFunctionNamedefault:inv-${resourcePrefix}-dfreceiverThe name of the Azure Container App deployed for the import job that imports diagnostic traces from client Azure Data Factory pipelines.
container-appsimporting invictusFlowHandlerFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/flowhandler:${version}-${date}The URL that navigates to the Azure Container App image of the Flow Handler.
container-apps invictusFlowHandlerFunctionNamedefault:inv-${resourcePrefix}-flowhandlerjobThe name of the Azure Container App deployed for handling flow operations requested by the Dashboard.
container-apps invictusFunctionAppImportJobFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/functionapp.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the import job that imports diagnostic traces from Azure Function Apps.
container-apps invictusFunctionAppImportJobFunctionNamedefault:inv-${resourcePrefix}-fncimportjobThe name of the Azure Container App deployed for the import job that imports diagnostic traces from client Azure Function Apps.
container-appsimporting invictusGenericReceiverFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/genericreceiver.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the import job that programmatically imports diagnostic traces via Azure Event Hubs.
container-appsimporting invictusGenericReceiverFunctionNamedefault:inv-${resourcePrefix}-genericreceiverThe name of the Azure Container App deployed for the import job that allows developers to programmatically import diagnostic traces via an Azure Event Hub.
container-appsimporting invictusHttpReceiverFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/httpreceiver.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the import job that programmatically imports diagnostic traces via a HTTP endpoint.
container-apps invictusHttpReceiverFunctionNamedefault:inv-${resourcePrefix}-httpreceiverThe name of the Azure Container App deployed for the import job that allows developers to programmatically import diagnostic traces via a HTTP endpoint.
container-appsimporting invictusImportJobFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/logicapps.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the import job that imports diagnostic traces from Azure Logic Apps.
container-apps invictusImportJobFunctionNamedefault:inv-${resourcePrefix}-importjobThe name of the Azure Container App deployed for the import job that imports diagnostic traces from client Azure Logic Apps.
container-apps invictusStoreImportJobFunctionLocalContainerImagedefault:${resourcePrefix}.acr.azurecr.io/${env}/datamerge.importjob:${version}-${date}The URL that navigates to the Azure Container App image of the merge job.
container-apps invictusStoreImportJobFunctionNamedefault:inv-${resourcePrefix}-storeimportjobThe name of the Azure Container App deployed for the Dashboard backend infrastructure that handles the final storage of flow traces within the Dashboard backend storage.
container-apps invictusUserManagedIdentityNamedefault:invictus-user-managed-identityThe name of the Azure user managed identity that has access to all the deployed Azure Container App components.
security isAdDisableddefault:falseFeature flag to control whether the Dashboard should use Microsoft Entra ID besides local authentication for signing in users into the Dashboard.
security isProvisionedCosmosdefault:0Feature flag to control whether the Azure Cosmos DB resource should deploy as a provisioned or serverless resource. How to choose between provisioned and serverless.
storage jwtSecretTokenThe secret value of the Json Web Token (JWT) that the Dashboard users to facilitate authentication, stored as an Azure Key Vault secret.
security keyVaultEnablePurgeProtectiondefault:falseIndicates whether the shared Azure Key Vault should be protected against purging.
security keyVaultNamedefault:invictus-${resourcePrefix}-vltThe name of the shared Azure Key Vault, used by the Dashboard backend infrastructure.
security keyVaultSubnetsA list of subnet names to form the Azure Key Vault resource, useful for VNET deployments.
networkingvnet logAnalyticsWorkspaceAppInsightsNamedefault:invictus-${resourcePrefix}-loganalytics-appinsightsThe name of the Azure Log Analytics workspace that acts as the main workspace that collects the main telemetry of the Azure Application Insights resource.
monitoring logAnalyticsWorkspaceImportFunctionV2Crondefault:0 */10 * * * *deprecated since: v6.2, will be removed in v7, support for automatically triggering importing stops.The time period in which the automatically Azure Functions timer trigger imports Azure Logic Apps diagnostic traces.
importingdeprecated logAnalyticsWorkspaceMaxNoOfRowsdefault:1000deprecated since: v6.2, will be removed in v7, support for automatically triggering importing stops.The maximum amount of rows to query the Azure Log Analytics workspace to automatically import Azure Logic Apps diagnostic traces.
importingdeprecated logAnalyticsworkspaceNamelaV2default:invictus-${resourcePrefix}-loganalyticsThe name of the Azure Log Analytics workspace besides the main workspace that collects the main telemetry of the Azure Application Insights resource.
monitoring logicAppsImportJobErrorFiltersdefault:*A list of Azure Logic Apps workflow error codes (ex. 'ActionConditionFailed', 'ActionFailed'...) that the import job importing diagnostic traces from Azure Logic App workflows should use to filter in specific diagnostic traces.
- Use
*to include all error codes. - Use
<error-code>for a single code. - Use
<error-code>, <error-code>for more than one code.
importing maxHttpHeaderSizeInBytesdefault:100000The maximum allowed size (in bytes) of a HTTP header during interaction between the Dashboard web application and the Dashboard backend/back office.
web maxMessageStatusCacheInDaydefault:60deprecated since: v6.2, will be removed in v7, caching happens independently now.The maximum amount of messages per day cached during importing.
storagescalingdeprecated messageContentCollectionThroughputdefault:2000The collection throughput (RU/s) for the MongoDB collection for the Azure Logic Apps workflow actions (mentioned in a flow trace) in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling messageStatusCacheDeleteAfterDaysdefault:30The time period (in days) after which the storage policy deletes the message status Azure Storage Account table.
storage performSqlDataMigrationdefault:falseIndicates whether the old SQL data storage migrates to the new Azure Cosmos DB for MongoDB storage (< v6 installations).
storage resourcePrefixrequiredAn abbreviation to include in all the Azure resource names that Invictus deploys, often an environment name.
governance serviceBusNamespaceNamedefault:invictus-${resourcePrefix}-sbsThe name of the Azure Service Bus resource that acts as the backend messaging system for sending asynchronous messages within the Dashboard backend infrastructure.
messaging serviceBusSkuNamedefault:enableVnetSupport ? Premium : StandardThe pricing tier of the Azure Service Bus, used by the Dashboard backend infrastructure.
messaging serviceBusSubnetsA list of subnet names to form the Azure Service Bus namespace resource, useful for VNET deployments.
networkingvnet sideTasksWorkflowEventHubNamedefault:invictus-${resourcePrefix}-sidetasks-evhbThe name of the Azure Event Hub where the merge job determines Azure Logic App workflow action results to be packed with the flow traces.
container-apps statisticsCollectionThroughputdefault:1000The collection throughput (RU/s) for the flow trace reports MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling statisticsCutOffDaysdefault:-3The number of days (in negative numbers) to go back from the current day, used when setting up a custom flow trace report based on active flows in the Dashboard.
monitoring storageAccountMinimumTLSVersiondefault:TLS1_2The minimum allowed TLS version of the shared Azure Storage Account, used by the Dashboard backend infrastructure.
storagesecurity storageAccountNamedefault:invictus${resourcePrefix}storeThe name of the shared Azure Storage Account, used by Dashboard backend infrastructure.
storage storageAccountSubnetsA list of subnet names to form the Azure Storage Account resource, useful for VNET deployments.
networkingvnetstorage storageAccountTypedefault:Standard_LRSThe pricing tier of the shared Azure Storage Account, used by the Dashboard backend infrastructure.
storage storeImportJobBatchSizedefault:250The maximum amount of events included in a single batch for the store job. More on Azure Event Hubs processor properties
messagingscaling storeImportJobPreFetchCountdefault:500The number of events eagerly requested from Azure Event Hubs by the store job. More on Azure Event Hubs processor properties
messagingscaling storeImportJobScalingThe Azure Container App scaling options for the store job.
container-appsscaling useOpenAPIdefault:falsenew since v6.3Feature flag to control whether the Dashboard deploys with OpenAPI/Swagger specifications
monitoring useResourceLocksdefault:trueFeature flag to control whether the deployed Azure resources have resource locks.
governance usersCollectionThroughputdefault:1000The collection throughput (RU/s) for the local and Microsoft Entra ID user references MongoDB collection in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling vnetNameThe name of the Azure Virtual Network (VNET) resource that forms the base for all network-related rules and subnets throughout.
networkingvnet vnetResourceGroupNamedefault:resourceGroup().nameThe name of the Azure resource group where the VNET network rules deploys to.
networkingvnet workFlowEventHubNamedefault:invictus-${resourcePrefix}-workflow-evhbThe name of the Azure Event Hub where the cache job pushes pending flow traces, where merge job listens.
container-apps workFlowEventsClearFunctionCrondefault:0 */15 * * * *deprecated since: v6.2, will be removed in v7, clearing happens via Cosmos DB for MongoDB TTL policies.The CRON expression that represents the time period in which to clear the Azure Logic Apps workflow Dashboard backend storage.
storagedeprecated workflowEventsCollectionThroughputdefault:2000The collection throughput (RU/s) for the MongoDB collection for Azure Logic Apps workflows (mentioned in a flow trace) in the Azure Cosmos DB resource, used when the Azure Cosmos DB deploys as provisioned.
storagescaling - Use
First-time sign-in
The Invictus installation generates an administrator account for your initial login to the Dashboard.
recommendedCreate a new
System Adminuser with your own email address after signing in for the first time. This will help during the Forgot Password procedure.Follow the steps below to sign in to the Dashboard:
-
Navigate to the Dashboard by visiting
https://{yourdashboardurl}in your web browser. -
Enter the following credentials:
- Username:
admin - Password: (the
tempAdminPasswordavailable as an Azure Key vault secret in the accompanied deployed vault)

- Username:
-
After successfully logging in, the Dashboard will prompt you to reset your password to one of your choice.

-
🎉 Congratulations! You have logged into the Invictus Dashboard for the first time.
Further customer-specific setups related to authentication and authorization:
-