diff options
| author | xuzhang3 <57888764+xuzhang3@users.noreply.github.com> | 2022-10-18 11:16:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-18 11:16:23 +0800 |
| commit | b5aea479caeb462049e16a1944d24c19042f6d9d (patch) | |
| tree | 54defc3128d2767a354168238826665d71a144c1 | |
| parent | af8a17a0331a65eefb318c29e41cd78eaf6e0dbc (diff) | |
| parent | aa5acab145657f9f080b2e95960b0006857f1927 (diff) | |
Merge pull request #651 from xuzhang3/doc/varible_group_kv
Document update - `azuredevops_variable_group`
| -rw-r--r-- | website/docs/r/variable_group.html.markdown | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/website/docs/r/variable_group.html.markdown b/website/docs/r/variable_group.html.markdown index 2f5b60d7..58e09c48 100644 --- a/website/docs/r/variable_group.html.markdown +++ b/website/docs/r/variable_group.html.markdown @@ -97,6 +97,7 @@ The following arguments are supported: - `description` - (Optional) The description of the Variable Group. - `allow_access` - (Required) Boolean that indicate if this variable group is shared by all pipelines of this project. - `variable` - (Optional) One or more `variable` blocks as documented below. +- `key_vault` -(Optional) A list of `key_vault` blocks as documented below. A `variable` block supports the following: @@ -105,6 +106,11 @@ A `variable` block supports the following: - `secret_value` - (Optional) The secret value of the variable. If omitted, it will default to empty string. Used when `is_secret` set to `true`. - `is_secret` - (Optional) A boolean flag describing if the variable value is sensitive. Defaults to `false`. +A `key_vault` block supports the following: + +- `name` - The name of the Azure key vault to link secrets from as variables. +- `service_endpoint_id` - The id of the Azure subscription endpoint to access the key vault. + ## Attributes Reference In addition to all arguments above, the following attributes are exported: |
