library
turbot/okta
- Activate User
- Assign Group
- Assign User
- Create Application
- Create Group
- Create User
- Deactivate User
- Delete Application
- Delete Group
- Delete User
- Get Application
- Get Group
- Get User
- List Applications
- List Assigned Groups
- List Deactivated Users
- List Groups
- List Member Users
- List Users
- Suspend User
- Unassign Group
- Unassign User
- Unsuspend User
- Update Application
- Update User
Get Involved
Version
Update User
Replaces a user's profile using strict-update semantics.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run okta.pipeline.update_user \ --arg 'user_id=<string>' \ --arg 'first_name=<string>' \ --arg 'last_name=<string>' \ --arg 'email=<string>' \ --arg 'login=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = okta.pipeline.update_user args = { user_id = <string> first_name = <string> last_name = <string> email = <string> login = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
cred | string | Yes | Name for credentials to use. If not provided, the default credentials will be used. | default |
user_id | string | Yes | The unique key for the user. | - |
first_name | string | Yes | Given name of the user. | - |
last_name | string | Yes | The family name of the user. | - |
string | Yes | The primary email address of the user. | - | |
login | string | Yes | The unique identifier for the user. | - |
Outputs
Name | Description |
---|---|
user | Updated user details. |
Tags
type = featured