Skip to content

Commit 22c224f

Browse files
Merge pull request #274092 from Akhilesh-microsoft/ACA/communicate-between-ms
[ACA: Communicate-between-microservices]: Reviewed the content and fixed all the issues. (freshness)
2 parents bfe5149 + e48cb20 commit 22c224f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/container-apps/communicate-between-microservices.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ In this tutorial, you learn to:
3232
3333
## Prerequisites
3434

35-
In the [code to cloud quickstart](./quickstart-code-to-cloud.md), a back end web API is deployed to return a list of music albums. If you haven't deployed the album API microservice, return to [Quickstart: Deploy your code to Azure Container Apps](quickstart-code-to-cloud.md) to continue.
35+
In the [code to cloud quickstart](./quickstart-code-to-cloud.md), a back end web API is deployed to return a list of music albums. If you didn't deploy the album API microservice, return to [Quickstart: Deploy your code to Azure Container Apps](quickstart-code-to-cloud.md) to continue.
3636

3737
## Setup
3838

39-
If you're still authenticated to Azure and still have the environment variables defined from the quickstart, you can skip the following steps and go directly to the [Prepare the GitHub repository](#prepare-the-github-repository) section.
39+
If you're currently authenticated to Azure and have the environment variables that are defined from the quickstart, then skip the following steps and go directly to [Prepare the GitHub repository](#prepare-the-github-repository).
4040

4141
[!INCLUDE [container-apps-code-to-cloud-setup.md](../../includes/container-apps-code-to-cloud-setup.md)]
4242

@@ -217,7 +217,7 @@ $APIBaseURL = (Get-AzContainerApp -Name $APIName -ResourceGroupName $ResourceGro
217217

218218
---
219219

220-
Now that you have set the `API_BASE_URL` variable with the FQDN of the album API, you can provide it as an environment variable to the frontend container app.
220+
Now that you set the `API_BASE_URL` variable with the FQDN of the album API, you can provide it as an environment variable to the frontend container app.
221221

222222
## Deploy front end application
223223

@@ -245,7 +245,7 @@ The output from the `az containerapp create` command shows the URL of the front
245245

246246
# [Azure PowerShell](#tab/azure-powershell)
247247

248-
To create the container app, create template objects that you'll pass in as arguments to the `New-AzContainerApp` command.
248+
To create the container app, create template objects that you pass in as arguments to the `New-AzContainerApp` command.
249249

250250
Create a template object to define your container image parameters. The environment variable named `API_BASE_URL` is set to the API's FQDN.
251251

@@ -261,13 +261,13 @@ $ContainerArgs = @{
261261
$ContainerObj = New-AzContainerAppTemplateObject @ContainerArgs
262262
```
263263

264-
You'll need run the following command to get your registry credentials.
264+
Run the following command to get your registry credentials.
265265

266266
```azurepowershell
267267
$RegistryCredentials = Get-AzContainerRegistryCredential -Name $ACRName -ResourceGroupName $ResourceGroup
268268
```
269269

270-
Create a registry credential object to define your registry information, and a secret object to define your registry password. The `PasswordSecretRef` in `$RegistryObj` refers to the `Name` in `$SecretObj`.
270+
Create a registry credential object to define your registry information, and a secret object to define your registry password. The `PasswordSecretRef` in `$RegistryObj` refers to the `Name` in `$SecretObj`.
271271

272272
```azurepowershell
273273
$RegistryArgs = @{
@@ -311,7 +311,7 @@ $FrontEndApp.IngressFqdn
311311

312312
## View website
313313

314-
Use the container app's FQDN to view the website. The page will resemble the following screenshot.
314+
Use the container app's FQDN to view the website. The page resembles the following screenshot.
315315

316316
:::image type="content" source="media/communicate-between-microservices/azure-container-apps-album-ui.png" alt-text="Screenshot of album list UI microservice.":::
317317

0 commit comments

Comments
 (0)