library
turbot/pipes
OverviewPipelines
0
Triggers
0
Variables
GitHub

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

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
org_handlestringYesSpecify the handle of the organization where the member need to be invited.-
workspace_handlestringYesSpecify the handle of the workspace where the member need to be invited.-
handlestringYesThe member's login handle to be part of workspace.-
rolestringYesThe workspace role name assigned to the member. It supports reader, operator and owner as role.-

Outputs

NameDescription
memberThe information about added members to the workspace.

Tags

type = featured