@@ -269,11 +269,11 @@ module pidNetworkingEnd './_pids/_pid.bicep' = {
269269 ]
270270}
271271
272- output adminConsoleExternalUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('http://{0}console' , const_appgwAdminCustomDNSAlias ) : format ('http://{0}/console' , appgwDeployment .outputs .appGatewayAlias )) : ref_networkDeployment .outputs .adminConsoleLBUrl
273- output adminConsoleExternalSecuredUrl string = enableAppGWIngress && enableCustomSSL && enableDNSConfiguration ? format ('https://{0}console' , const_appgwAdminCustomDNSAlias ) : ref_networkDeployment .outputs .adminConsoleLBSecuredUrl
274- output adminRemoteConsoleUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('http://{0}remoteconsole' , const_appgwAdminCustomDNSAlias ) : format ('http://{0}/remoteconsole' , appgwDeployment .outputs .appGatewayAlias )) : ref_networkDeployment .outputs .adminRemoteUrl
275- output adminRemoteConsoleSecuredUrl string = enableAppGWIngress && enableCustomSSL && enableDNSConfiguration ? format ('https://{0}remoteconsole' , const_appgwAdminCustomDNSAlias ) : ref_networkDeployment .outputs .adminRemoteSecuredUrl
272+ output adminConsoleExternalUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('http://{0}console' , const_appgwAdminCustomDNSAlias ) : format ('http://{0}/console' , appgwDeployment .outputs .appGatewayAlias )) : ref_networkDeployment .outputs .adminConsoleLBUrl . value
273+ output adminConsoleExternalSecuredUrl string = enableAppGWIngress && enableCustomSSL && enableDNSConfiguration ? format ('https://{0}console' , const_appgwAdminCustomDNSAlias ) : ref_networkDeployment .outputs .adminConsoleLBSecuredUrl . value
274+ output adminRemoteConsoleUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('http://{0}remoteconsole' , const_appgwAdminCustomDNSAlias ) : format ('http://{0}/remoteconsole' , appgwDeployment .outputs .appGatewayAlias )) : ref_networkDeployment .outputs .adminRemoteUrl . value
275+ output adminRemoteConsoleSecuredUrl string = enableAppGWIngress && enableCustomSSL && enableDNSConfiguration ? format ('https://{0}remoteconsole' , const_appgwAdminCustomDNSAlias ) : ref_networkDeployment .outputs .adminRemoteSecuredUrl . value
276276output adminServerT3ChannelUrl string = ref_networkDeployment .outputs .adminServerT3LBUrl .value
277- output clusterExternalUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('http://{0}' , const_appgwCustomDNSAlias ) : appgwDeployment .outputs .appGatewayURL ) : ref_networkDeployment .outputs .clusterLBUrl
278- output clusterExternalSecuredUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('https://{0}' , const_appgwCustomDNSAlias ) : appgwDeployment .outputs .appGatewaySecuredURL ) : ref_networkDeployment .outputs .clusterLBSecuredUrl
277+ output clusterExternalUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('http://{0}' , const_appgwCustomDNSAlias ) : appgwDeployment .outputs .appGatewayURL ) : ref_networkDeployment .outputs .clusterLBUrl . value
278+ output clusterExternalSecuredUrl string = enableAppGWIngress ? (enableDNSConfiguration ? format ('https://{0}' , const_appgwCustomDNSAlias ) : appgwDeployment .outputs .appGatewaySecuredURL ) : ref_networkDeployment .outputs .clusterLBSecuredUrl . value
279279output clusterT3ChannelUrl string = ref_networkDeployment .outputs .clusterT3LBUrl .value
0 commit comments