Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

group

This module creates following resources.

  • okta_group
  • okta_group_role (optional)

Requirements

Name Version
terraform >= 1.8
okta >= 4.8

Providers

Name Version
okta 4.8.1

Modules

No modules.

Resources

Name Type
okta_group.this resource
okta_group_role.this resource

Inputs

Name Description Type Default Required
name (Required) The name of the Okta Group. string n/a yes
admin_role_assignments (Optional) A configurations for admin roles to assign to the Okta group. Each item of admin_role_assignments block as defined below.
(Required) admin_role - The admin role assigned to the group. Valid values are SUPER_ADMIN, ORG_ADMIN, APP_ADMIN, USER_ADMIN, HELP_DESK_ADMIN, READ_ONLY_ADMIN , MOBILE_ADMIN, API_ACCESS_MANAGEMENT_ADMIN, REPORT_ADMIN, GROUP_MEMBERSHIP_ADMIN. USER_ADMIN is the Group Administrator.
(Optional) target_apps - A list of app names (name represents set of app instances, like salesforce or facebook), or a combination of app name and app instance ID (like facebook.0oapsqQ6dv19pqyEo0g3) you would like as the targets of the admin role. Only supported when used with the role type APP_ADMIN.
(Optional) target_groups - A list of group IDs you would like as the targets of the admin role. Only supported when used with the role types: GROUP_MEMBERSHIP_ADMIN, HELP_DESK_ADMIN, or USER_ADMIN.
list(object({
admin_role = string
target_apps = optional(set(string), [])
target_groups = optional(set(string), [])
}))
[] no
admin_role_notification_enabled (Optional) Whether to send the default Okta administrator emails. When this setting is disabled, the admins won't receive any of the notifications. These admins also won't have access to contact Okta Support and open support cases on behalf of your org. Defaults to true. bool true no
custom_profile_attributes (Optional) A map of custom profile attributes for group members. any {} no
description (Optional) The description of the Okta Group. string "Managed by Terraform." no

Outputs

Name Description
admin_role_assignments The configurations for admin roles assigned to the Okta group.
admin_role_notification_enabled Whether to send the default Okta administrator emails.
custom_profile_attributes The custom profile attributes of the Okta group.
description The description of the Okta group.
id The ID of the Okta group.
name The name of the Okta group.