Skip to content

Commit

Permalink
Change "vault_uri" to "key_vault_id" (#3238)
Browse files Browse the repository at this point in the history
This resolves #3162.

Updated "vault_uri" to "key_vault_id" for data.azurerm_key_vault_secret since "vault_uri" has been deprecated in favor of "key_vault_id".
  • Loading branch information
zusyed authored and katbyte committed Apr 12, 2019
1 parent 4aeb146 commit 1571905
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/d/key_vault_secret.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Use this data source to access information about an existing Key Vault Secret.
```hcl
data "azurerm_key_vault_secret" "test" {
name = "secret-sauce"
vault_uri = "https://rickslab.vault.azure.net/"
key_vault_id = "${data.azurerm_key_vault.existing.id}"
}
output "secret_value" {
Expand All @@ -33,7 +33,7 @@ The following arguments are supported:

* `name` - (Required) Specifies the name of the Key Vault Secret.

* `vault_uri` - (Required) Specifies the ID of the Key Vault Key Vault instance where the Secret resides, available on the `azurerm_key_vault` Data Source / Resource.
* `key_vault_id` - (Required) Specifies the ID of the Key Vault Key Vault instance where the Secret resides, available on the `azurerm_key_vault` Data Source / Resource.


## Attributes Reference
Expand Down

0 comments on commit 1571905

Please sign in to comment.