diff --git a/docs/r/vted_group.md b/docs/r/vted_group.md index ec9fc88e340e742f1187814554fcc7457a28eaf8..2c913516f85ae940f4506a3e5257f920b3662f99 100644 --- a/docs/r/vted_group.md +++ b/docs/r/vted_group.md @@ -12,9 +12,15 @@ resource "vted_group" "my_group" { suppress_display = true suppress_members = true - admins = ["mikesir"] + admins { + people = ["mikesir"] + services = ["gateway"] + } contacts = ["mikesir", "ceharris"] - managers = ["mikesir", "ceharris"] + managers { + people = ["mikesir", "ceharris"] + services = ["gateway"] + } members { people = ["mikesir", "ceharris"] @@ -29,9 +35,9 @@ The following arguments are supported: - `name` - (Required) The name of the group. - `expiration_date` - (Optional) The expiration date of the group. Supported formats are RFC3339 and `YYYY-MM-DD`. Note that when using `YYYY-MM-DD`, the time is set to 00:00 UTC, which might cause date display differences. -- `admins` - (Required) A collection of PIDs that are allowed to administer the group. +- `admins` - (Required) A map of the `people` (PIDs) and `services` (uusids) that are allowed to administer the group. - `contacts` - (Required) A collection of PIDs that are contacts for the group. -- `managers` - (Optional) A collection of PIDs that are allowed to manage the group membership. +- `managers` - (Optional) A map of the `people` (PIDs) and `services` (uusids) that are allowed to manage the group membership. - `members` - (Optional) A map of the `people` (PIDs) and `groups` (uusids) that are members of this group - `suppress_display` - (Optional) Boolean, defaults to true. Is this group visible in public listings? - `suppress_members` - (Optional) Boolean, defaults to true. Is this group's membership visible in public queries?