highbond_govmap_group (Resource)
Schema
Required
country_id | Number | The Country Id of Group |
group_type_id | Number | The group type id of Group |
name | String | The Name of Group |
Optional
definition | String | Definition of Group |
duties_authority | String | Duties Authority of Group |
established_date | String | The Established date of Group |
force_updates | Boolean | Allows overriding top-level 'create_only' option. |
id | String | The ID of this resource. |
number_of_members | Number | Number of members of Group |
parent_group_id | Number | The Parent Group ID is optional only when creating the first group (Note: Only one group per organization can be created without Parent Group Id). However, for all other group creations, it is a required field. |
purpose | String | Purpose of Group |
quorum | Number | The Quorum of Group |
terms_of_reference | String | Terms of reference of Group |
Example Usage
resource "highbond_govmap_group_type" "main" {
name = "Sample Group"
}
// Parent group
resource "highbond_govmap_group" "parent" {
name = "Group Name"
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_group" "main" {
name = "Group Name"
parent_group_id = highbond_govmap_group.parent.id // The Parent Group ID is optional only when creating the first group (Note: Only one group per organization can be created without Parent Group Id). However, for all other group creations, it is a required field.
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"
}