Skip to main content
Version: Latest Version (2.9.1)

highbond_user (Resource)

Schema

Required

emailString The user's email address, defined when that user was created. This value cannot be updated
first_nameString First name for the user. The character limit is 40
last_nameString Last name for the user. The character limit is 40

Optional

date_formatString The date format this user uses when they view timestamped fields in HighBond
force_updatesBoolean Allows overriding top-level 'create_only' option.
idString The ID of this resource.
initialsString The initials of this user's first and last names. The character limit is 255
localeString The two letter code representing the user's chosen locale in their HighBond profile. The available locales are de, en, es, fr, pt, ja, and zh
phoneString The user's phone number. This can be with or without hyphens
phone_extensionString The user's phone extension
preferred_community_org_idNumber The id of the preferred HighBond instance for the user to access community
timezoneString The user's timezone
titleString The user's professional title. The character limit is 255

Read-Only

enabledBoolean Shows if the user is enabled or not in the platform
is_system_adminBoolean Returns true when the user is a System Admin in this HighBond instance
nameString The user's full name. This value is system generated, based on first_name and last_name
preferred_community_orgString The name of the user's preferred community instance
subscriptionString The type of user subscription in this HighBond instance. This field will be returned to provide information, currently it cannot be updated via APIs. Available codes are: grc_full for Professional, grc_lite for Contributor, grc_intermediate Oversight, grc_results_cloud_admin for Results Lite Professional, grc_results_cloud_user for Results Lite Contributor, and null for None
user_typeString The type of user in the HighBond instance, one of user, system or root

Example Usage

resource "highbond_user" "user-1" {
email = "john.doe@sandbox.com"
first_name = "John"
last_name = "Doe"
title = "Software Engineer"
initials = "Mr."
phone = "9110475210"
phone_extension = "+91"
date_format = "%m/%d/%Y"
timezone = "Chennai"
locale = "en"
preferred_community_org_id = 2
force_updates = false // Create only with force update changes
}