highbond_role_assignment (Resource)
Schema
Required
| role_id | String | The Id of the role | 
Optional
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| group_ids | Set of String | List of group Id for the role | 
| id | String | The ID of this resource. | 
| user_ids | Set of String | List of UID for the role | 
Example Usage
resource "highbond_role_assignment" "main" {
  role_id       = highbond_role.main.id
  user_ids      = ["rPRyawL242pUu4qxmBzd"]
  group_ids     = ["46306"]
  force_updates = true // Create only with force update changes
}
