sample
turbot/flowpipe-samples/offboard-entra-id-users
Get Involved
Version
Pipeline: Update Entra ID User Status
Create Jira issue to update Entra ID user status.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run offboard_entra_id_users.pipeline.update_entra_id_user_status \ --arg 'user_id=<string>' \ --arg 'account_status=<string>' \ --arg 'project_key=<string>'Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = offboard_entra_id_users.pipeline.update_entra_id_user_status args = { user_id = <string> account_status = <string> project_key = <string> }}Params
| Name | Type | Required | Description | Default |
|---|---|---|---|---|
| azure_conn | connection.azure | Yes | Name of Azure connection to use. If not provided, the default Azure connection will be used. | connection.azure.default |
| jira_conn | connection.jira | Yes | Name of Jira connection to use. If not provided, the default Jira connection will be used. | connection.jira.default |
| user_id | string | Yes | The Entra ID user object ID or principal name. | - |
| account_status | string | Yes | The account status to update for the user. Here you can assign values as 'enable', 'disable' or 'delete' to raise respective issues in jira | - |
| project_key | string | Yes | The key identifying the project. | - |
| issue_type | string | Yes | Issue type. | Task |
Outputs
| Name | Description |
|---|---|
| disable_issue | Issue metadata. |
| enable_issue | Issue metadata. |
| delete_issue | Issue metadata. |
Tags
recommended = true