Skip to content
Snippets Groups Projects
Commit 0c476420 authored by Richard J Quintin's avatar Richard J Quintin
Browse files

update docs

parent 345cf564
Branches
Tags
1 merge request!3#6 Support services on admins/managers
......@@ -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?
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment