Skip to main content
Version: 2.8.9

highbond_govmap_appointment (Resource)

Schema

Required

group_idNumber The Governance Map Group Id
member_idNumber The Governance Map Member Id
role_idNumber The Governance Map Role Id

Optional

expiration_dateString The expiration Date of the appointment
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.

Example Usage

resource "highbond_govmap_role" "main" {
name = "Sample Role - 1125"
description = "Sample description"
requirements = "Sample requirements - 1"
}

resource "highbond_govmap_member" "main" {
name = "Sample Member"
email = "sample@diligent.com"
date_of_birth = "01-01-1991"
job_title = "SE"
telephone_number = "112345"
nationality_id = 1
address = "address"
highbond_user_id = 1
}

resource "highbond_govmap_group" "main" {
name = "Group Name"
parent_group_id = 1
group_type_id = highbond_govmap_group_type.main.id
country_id = 1
established_date = "2023-05-06"
quorum = 1
number_of_members = 2
terms_of_reference = "Create terms of reference"
purpose = "Create purpose"
duties_authority = "Create duties authority"
definition = "Create definition"
}

resource "highbond_govmap_appointment" "main" {
group_id = highbond_govmap_group.main.id
role_id = highbond_govmap_role.main.id
member_id = highbond_govmap_member.main.id
expiration_date = "1999-02-02"
}