You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/communicate-between-microservices.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,11 @@ In this tutorial, you learn to:
32
32
33
33
## Prerequisites
34
34
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.
36
36
37
37
## Setup
38
38
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).
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.
221
221
222
222
## Deploy front end application
223
223
@@ -245,7 +245,7 @@ The output from the `az containerapp create` command shows the URL of the front
245
245
246
246
# [Azure PowerShell](#tab/azure-powershell)
247
247
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.
249
249
250
250
Create a template object to define your container image parameters. The environment variable named `API_BASE_URL` is set to the API's FQDN.
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`.
271
271
272
272
```azurepowershell
273
273
$RegistryArgs = @{
@@ -311,7 +311,7 @@ $FrontEndApp.IngressFqdn
311
311
312
312
## View website
313
313
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.
315
315
316
316
:::image type="content" source="media/communicate-between-microservices/azure-container-apps-album-ui.png" alt-text="Screenshot of album list UI microservice.":::
0 commit comments