Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Gerd Oberlechner <goberlec@redhat.com>
  • Loading branch information
geoberle committed Feb 28, 2025
1 parent d42aa88 commit 1cb04d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev-infrastructure/modules/aks-cluster-base.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -695,4 +695,4 @@ output aksNodeSubnetId string = aksNodeSubnet.id
output aksOidcIssuerUrl string = aksCluster.properties.oidcIssuerProfile.issuerURL
output aksClusterName string = aksClusterName
output aksClusterKeyVaultSecretsProviderPrincipalId string = aksCluster.properties.addonProfiles.azureKeyvaultSecretsProvider.identity.objectId
output istioIngressGatewayIPAddress string = istioIngressGatewayIPAddress.outputs.ipAddress
output istioIngressGatewayIPAddress string = deployIstio ? istioIngressGatewayIPAddress.outputs.ipAddress : ''
2 changes: 1 addition & 1 deletion dev-infrastructure/templates/region.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ module maestroInfra '../modules/maestro/maestro-infra.bicep' = {
maxClientSessionsPerAuthName: maestroEventGridMaxClientSessionsPerAuthName
publicNetworkAccess: maestroEventGridPrivate ? 'Disabled' : 'Enabled'
certificateIssuer: maestroCertificateIssuer
logAnalyticsWorkspaceId: logAnalyticsWorkspace.id
logAnalyticsWorkspaceId: enableLogAnalytics ? logAnalyticsWorkspace.id : ''
}
}

Expand Down

0 comments on commit 1cb04d9

Please sign in to comment.