Skip to content

Commit 138fb8a

Browse files
authored
Some more changes
1 parent 3df9b93 commit 138fb8a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/container-apps/manage-secrets.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ In this example, the application connection string is declared as `queue-connect
102102

103103
:::code language="json" source="code/secure-app-arm-template.json" highlight="11,12,13,27,28,29,30,31,44,45,61,62":::
104104

105-
Here, the environment variable named `connection-string` gets its value from the application-level `queue-connection-string` secret. Also, the Azure Queue Storage scale rule's authorization configuration uses the `queue-connection-string` secret as to define its connection.
105+
Here, the environment variable named `connection-string` gets its value from the application-level `queue-connection-string` secret. Also, the Azure Queue Storage scale rule's authentication configuration uses the `queue-connection-string` secret as to define its connection.
106106

107107
To avoid committing secret values to source control with your ARM template, pass secret values as ARM template parameters.
108108

109109
# [Azure CLI](#tab/azure-cli)
110110

111-
In this example, you create a container app with a secret that's referenced in an environment variable using the Azure CLI. To reference a secret in an environment variable in the Azure CLI, set its value to `secretref:`, followed by the name of the secret.
111+
In this example, you create a container app using the Azure CLI with a secret that's referenced in an environment variable. To reference a secret in an environment variable in the Azure CLI, set its value to `secretref:`, followed by the name of the secret.
112112

113113
```bash
114114
az containerapp create \
@@ -120,11 +120,11 @@ az containerapp create \
120120
--env-vars "QueueName=myqueue" "ConnectionString=secretref:queue-connection-string"
121121
```
122122

123-
Here, the environment variable named `connection-string` gets its value from the application-level `queue-connection-string` secret by using `secretref`.
123+
Here, the environment variable named `connection-string` gets its value from the application-level `queue-connection-string` secret.
124124

125125
# [PowerShell](#tab/powershell)
126126

127-
In this example, you create an application with a secret that's referenced in an environment variable using the Azure CLI.
127+
In this example, you create a container app using the Azure CLI with a secret that's referenced in an environment variable. To reference a secret in an environment variable in the Azure CLI, set its value to `secretref:`, followed by the name of the secret.
128128

129129
```azurecli
130130
az containerapp create `
@@ -136,7 +136,7 @@ az containerapp create `
136136
--env-vars "QueueName=myqueue" "ConnectionString=secretref:queue-connection-string"
137137
```
138138

139-
Here, the environment variable named `connection-string` gets its value from the application-level `queue-connection-string` secret by using `secretref`.
139+
Here, the environment variable named `connection-string` gets its value from the application-level `queue-connection-string` secret.
140140

141141
---
142142

0 commit comments

Comments
 (0)