Skip to content

Commit 147aadd

Browse files
author
Jill Grant
authored
Update environment-variables.md
Fixes for Acrolinx, sentence case, and gerunds.
1 parent 747567f commit 147aadd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/container-apps/environment-variables.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Managing Environment Variables on Azure Container Apps
2+
title: Manage environment variables on Azure Container Apps
33
description: Learn to manage environment variables in Azure Container Apps.
44
services: container-apps
55
author: fred-cardoso
@@ -9,12 +9,12 @@ ms.date: 04/10/2024
99
ms.author: fredcardoso
1010
---
1111

12-
# Managing Environment Variables on Azure Container Apps
12+
# Manage environment variables on Azure Container Apps
1313

1414
In Azure Container Apps, you're able to set runtime environment variables. These variables can be set as manually entries or as references to [secrets](manage-secrets.md).
1515
These environment variables are loaded onto your Container App during runtime.
1616

17-
## Configuring environment variables
17+
## Configure environment variables
1818

1919
You can configure the Environment Variables upon the creation of the Container App or later by creating a new revision.
2020

@@ -46,7 +46,7 @@ az containerapp update \
4646

4747
### [PowerShell](#tab/powershell)
4848

49-
If you want to use PowerShell you have to, first, create a in-memory object called [EnvironmentVar](/dotnet/api/Microsoft.Azure.PowerShell.Cmdlets.App.Models.EnvironmentVar) using the [New-AzContainerAppEnvironmentVarObject](/powershell/module/az.app/new-azcontainerappenvironmentvarobject) PowerShell cmdlet.
49+
If you want to use PowerShell you have to, first, create an in-memory object called [EnvironmentVar](/dotnet/api/Microsoft.Azure.PowerShell.Cmdlets.App.Models.EnvironmentVar) using the [New-AzContainerAppEnvironmentVarObject](/powershell/module/az.app/new-azcontainerappenvironmentvarobject) PowerShell cmdlet.
5050

5151
To use this cmdlet, you have to pass the name of the environment variable using the `-Name` parameter and the value using the `-Value` parameter, respectively.
5252

@@ -81,7 +81,7 @@ Update-AzContainerApp -TemplateContainer $containerTemplate
8181

8282
---
8383

84-
## Adding environment variables on existing container apps
84+
## Add environment variables on existing container apps
8585

8686
After the Container App is created, the only way to update the Container App environment variables is by creating a new revision with the needed changes.
8787

@@ -147,4 +147,4 @@ Update-AzContainerApp -TemplateContainer $containerTemplate
147147

148148
## Next steps
149149

150-
- [Revision management](revisions-manage.md)
150+
- [Revision management](revisions-manage.md)

0 commit comments

Comments
 (0)