Skip to content

Commit 379da74

Browse files
committed
addressing pr comments
1 parent ff356d6 commit 379da74

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/azure-resource-manager/bicep/bicep-functions-parameters-file.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ Bicep provides a function called `readEnvironmentVariable()` that allows you to
1616

1717
Returns a secret from an [Azure Key Vault](../../key-vault/secrets/about-secrets.md). Use this function to pass a secret to a secure string parameter of a Bicep file.
1818

19-
You can use the `getSecret()` function from within a `.bicepparam` file.
19+
> [!NOTE]
20+
> You can also use the [keyVaultName.getSecret(secretName)](./bicep-functions-resource.md#getsecret) function from within a `.bicep` file.
2021
2122
```bicep
2223
using './main.bicep'
@@ -33,7 +34,7 @@ A [namespace qualifier](bicep-functions.md#namespaces-for-functions) (`az`) can
3334

3435
| Parameter | Required | Type | Description |
3536
|:--- |:--- |:--- |:--- |
36-
| subscriptionId | Yes | string | The id of the subscription that has the key vault resource. |
37+
| subscriptionId | Yes | string | The ID of the subscription that has the key vault resource. |
3738
| resourceGroupName | Yes | string | The name of the resource group that has the key vault resource. |
3839
| keyVaultName | Yes | string | The name of the key vault. |
3940
| secretName | Yes | string | The name of the secret stored in the key vault. |

0 commit comments

Comments
 (0)