Skip to main content
Version: Latest Version (2.9.1)

highbond_collaborator_group (Resource)

Schema

Required

parent_resource_idNumber The ID of the parent resource(projects/frameworks)
parent_resource_typeString The ID of the parent resource(projects/frameworks)
project_roleString Roles apply within an individual project or framework

Optional

force_updatesBoolean Allows overriding top-level 'create_only' option.
group_idString The identifier of the assigned group.
idString The ID of this resource.

Read-Only

adminBoolean Indicates if the group is assigned as the System Admin Group in Launchpad.
created_atString The timestamp identifying when the collaborator was created
defaultBoolean Indicates if the group was assigned by default to a project or framework.
disabledBoolean Indicates if the project_role attribute has a value assigned to it.
updated_atString The timestamp identifying when the collaborator was updated

Example Usage

resource "highbond_collaborator_group" "main" {
project_role = "professional_manager" // Available project roles are: "professional_manager", "professional_user", "oversight_executive", "oversight_reviewer", "contributor_user", "contributor_manager", "contributor_tester"
group_id = "wyealuxxount8o4itdn6" // Group cannot be updated once assigned
parent_resource_type = "projects" // Available parent resource type "projects" "frameworks"
parent_resource_id = highbond_project.main.id
}