library
turbot/pipes
Get Involved
Version
Pipeline: Create Organization Workspace Member
Add an individual as a member of a workspace in an organization.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run pipes.pipeline.create_organization_workspace_member \ --arg 'org_handle=<string>' \ --arg 'workspace_handle=<string>' \ --arg 'handle=<string>' \ --arg 'role=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = pipes.pipeline.create_organization_workspace_member args = { org_handle = <string> workspace_handle = <string> handle = <string> role = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.pipes | Yes | Name of Pipes connection to use. If not provided, the default Pipes connection will be used. | connection.pipes.default |
org_handle | string | Yes | Specify the handle of the organization where the member need to be invited. | - |
workspace_handle | string | Yes | Specify the handle of the workspace where the member need to be invited. | - |
handle | string | Yes | The member's login handle to be part of workspace. | - |
role | string | Yes | The workspace role name assigned to the member. It supports reader, operator and owner as role. | - |
Outputs
Name | Description |
---|---|
member | The information about added members to the workspace. |
Tags
recommended = true