diff --git a/samples/eshop-dapr/infra/gateway.bicep b/samples/eshop-dapr/infra/gateway.bicep index 5a66acbc..81d44ca3 100644 --- a/samples/eshop-dapr/infra/gateway.bicep +++ b/samples/eshop-dapr/infra/gateway.bicep @@ -15,7 +15,7 @@ resource gateway 'Applications.Core/gateways@2023-10-01-preview' = { // Identity API { path: '/identity/' - destination: 'http://identity-api:80' + destination: 'http://identity-api' } // Seq { @@ -26,18 +26,18 @@ resource gateway 'Applications.Core/gateways@2023-10-01-preview' = { // Health { path: '/health' - destination: 'http://webstatus:80' + destination: 'http://webstatus' } // Webshopping API Gateway { path: '/api/' - destination: 'http://webshopping-gw:80' + destination: 'http://webshopping-gw' replacePrefix: '/' } // Blazor Client { path: '/' - destination: 'http://blazor-client:80' + destination: 'http://blazor-client' } ] } diff --git a/samples/eshop-dapr/services/basket-api.bicep b/samples/eshop-dapr/services/basket-api.bicep index 17467283..6d496cdf 100644 --- a/samples/eshop-dapr/services/basket-api.bicep +++ b/samples/eshop-dapr/services/basket-api.bicep @@ -69,7 +69,7 @@ resource basketApi 'Applications.Core/containers@2023-10-01-preview' = { source: daprStateStore.id } identityApiRoute: { - source: 'http://identity-api:80' + source: 'http://identity-api' } seqRoute: { source: 'http://seq:5340' diff --git a/samples/eshop-dapr/services/ordering-api.bicep b/samples/eshop-dapr/services/ordering-api.bicep index b0d64a12..c434cc9b 100644 --- a/samples/eshop-dapr/services/ordering-api.bicep +++ b/samples/eshop-dapr/services/ordering-api.bicep @@ -86,7 +86,7 @@ resource orderingApi 'Applications.Core/containers@2023-10-01-preview' = { source: daprSecretStore.id } identityApiRoute: { - source: 'http://identity-api:80' + source: 'http://identity-api' } // Temporary workaround to grant required role to workload identity. keyVault: { diff --git a/samples/eshop-dapr/services/webshopping-agg.bicep b/samples/eshop-dapr/services/webshopping-agg.bicep index b48b4796..52c3eba3 100644 --- a/samples/eshop-dapr/services/webshopping-agg.bicep +++ b/samples/eshop-dapr/services/webshopping-agg.bicep @@ -52,10 +52,10 @@ resource webshoppingAgg 'Applications.Core/containers@2023-10-01-preview' = { ] connections: { identityApi: { - source: 'http://identity-api:80' + source: 'http://identity-api' } seq: { - source: 'http://seq:80' + source: 'http://seq' } } } diff --git a/samples/eshop-dapr/services/webshopping-gw.bicep b/samples/eshop-dapr/services/webshopping-gw.bicep index 2c603e18..4ab88564 100644 --- a/samples/eshop-dapr/services/webshopping-gw.bicep +++ b/samples/eshop-dapr/services/webshopping-gw.bicep @@ -31,10 +31,10 @@ resource webshoppingGw 'Applications.Core/containers@2023-10-01-preview' = { ] connections: { catalogApi: { - source: 'http://catalog-api:80' + source: 'http://catalog-api' } orderingApi: { - source: 'http://ordering-api:80' + source: 'http://ordering-api' } } } diff --git a/samples/eshop-dapr/services/webstatus.bicep b/samples/eshop-dapr/services/webstatus.bicep index 81efc876..c4fe40d6 100644 --- a/samples/eshop-dapr/services/webstatus.bicep +++ b/samples/eshop-dapr/services/webstatus.bicep @@ -50,7 +50,7 @@ resource webstatus 'Applications.Core/containers@2023-10-01-preview' = { ] connections: { blazorClient: { - source: 'http://blazor-client:80' + source: 'http://blazor-client' } } }