Skip to content

Commit 9328ddf

Browse files
authored
Merge pull request #297765 from craigshoemaker/aca/communicate-between-apps
[Container Apps] Communicate between apps: Update title and TOC
2 parents b9004af + a8f140a commit 9328ddf

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

articles/container-apps/TOC.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@
7676
href: planned-maintenance.md
7777
- name: Build and deliver apps with Container Apps (video)
7878
href: https://youtu.be/OxmVds31qL8
79+
- name: Communicate between multiple apps
80+
href: connect-apps.md
7981
- name: Reduce cold-start times
8082
href: cold-start.md
8183
- name: Develop & deploy
@@ -97,7 +99,7 @@
9799
- name: Overview
98100
href: services.md
99101
displayName: Connecting to services overview
100-
- name: Connect multiple apps
102+
- name: Communicate between multiple apps
101103
href: connect-apps.md
102104
- name: Connect to a cloud service using Service Connector
103105
items:

articles/container-apps/connect-apps.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
---
2-
title: Connect applications in Azure Container Apps
3-
description: Learn to deploy multiple applications that communicate together in Azure Container Apps.
2+
title: Communicate between container apps in Azure Container Apps
3+
description: Learn how to communicate between different container apps in the same environment in Azure Container Apps.
44
services: container-apps
55
author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.topic: conceptual
8-
ms.date: 07/23/2024
8+
ms.date: 04/07/2025
99
ms.author: cshoe
1010
---
1111

12-
# Connect applications in Azure Container Apps
12+
# Communicate between container apps in Azure Container Apps
1313

1414
Azure Container Apps exposes each container app through a domain name if [ingress](ingress-overview.md) is enabled. You can expose ingress endpoints either publicly to the world or to the other container apps in the same environment. Alternatively, you can limit ingress to only other container apps in the same [environment](environment.md).
1515

16-
Application code can call other container apps in the same environment using one of the following methods:
16+
Application code can call other container apps in the same environment using one of the following methods:
1717

18-
- default fully qualified domain name (FQDN)
19-
- a custom domain name
20-
- the container app name, for instance `http://<APP_NAME>` for internal requests
21-
- a Dapr URL
18+
- Default fully qualified domain name (FQDN)
19+
- A custom domain name
20+
- The container app name, for instance `http://<APP_NAME>` for internal requests
21+
- A Dapr URL
2222

2323
> [!NOTE]
2424
> When you call another container in the same environment using the FQDN or app name, the network traffic never leaves the environment.
@@ -29,9 +29,9 @@ A sample solution showing how you can call between containers using both the FQD
2929

3030
A container app's location is composed of values associated with its environment, name, and region. Available through the `azurecontainerapps.io` top-level domain, the fully qualified domain name (FQDN) uses:
3131

32-
- the container app name
33-
- the environment unique identifier
34-
- region name
32+
- The container app name
33+
- The environment unique identifier
34+
- Region name
3535

3636
The following diagram shows how these values are used to compose a container app's fully qualified domain name.
3737

0 commit comments

Comments
 (0)