Merge pull request #13108 from sozercan/patch-1

provider/azurerm: Update vault_certificates docs
This commit is contained in:
Tom Harvey 2017-03-30 10:27:35 +01:00 committed by GitHub
commit b6a3840768
1 changed files with 11 additions and 2 deletions

View File

@ -304,11 +304,20 @@ For more information on the different example configurations, please check out t
`os_profile_secrets` supports the following:
* `source_vault_id` - (Required) Specifies the key vault to use.
* `vault_certificates` - (Required, on windows machines) A collection of Vault Certificates as documented below
* `vault_certificates` - (Required) A collection of Vault Certificates as documented below
`vault_certificates` support the following:
* `certificate_url` - (Required) It is the Base64 encoding of a JSON Object that which is encoded in UTF-8 of which the contents need to be `data`, `dataType` and `password`.
* `certificate_url` - (Required) Specifies the URI of the key vault secrets in the format of `https://<vaultEndpoint>/secrets/<secretName>/<secretVersion>`. Stored secret is the Base64 encoding of a JSON Object that which is encoded in UTF-8 of which the contents need to be
```
{
"data":"<Base64-encoded-certificate>",
"dataType":"pfx",
"password":"<pfx-file-password>"
}
```
* `certificate_store` - (Required, on windows machines) Specifies the certificate store on the Virtual Machine where the certificate should be added to.
## Attributes Reference