library
turbot/okta
Get Involved
Version
Pipeline: Create User
Creates a new user in your Okta organization.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run okta.pipeline.create_user \ --arg 'first_name=<string>' \ --arg 'last_name=<string>' \ --arg 'email=<string>' \ --arg 'login=<string>' \ --arg 'password=<string>'Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = okta.pipeline.create_user args = { first_name = <string> last_name = <string> email = <string> login = <string> password = <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 |
| 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. | - |
| password | string | Yes | Specifies the password for a user. | - |
Outputs
| Name | Description |
|---|---|
| user | Created user details. |
Tags
type = featured