samples
turbot/flowpipe-samples/invite-pipes-organization-member
OverviewPipelines
0
Triggers
0
Variables
GitHub

Create New Organization Workspace and Add Member

Create a new workspace in an organization and bring in the organization member.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run invite_pipes_organization_member.pipeline.create_organization_workspace_and_add_member \
--arg 'organization_handle=<string>' \
--arg 'workspace_handle=<string>' \
--arg 'member_handle=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = invite_pipes_organization_member.pipeline.create_organization_workspace_and_add_member
args = {
organization_handle = <string>
workspace_handle = <string>
member_handle = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
pipes_credstringYesName for Pipes credentials to use. If not provided, the default credentials will be used.default
organization_handlestringYesThe handle of the organization where the workspace has to be created.-
workspace_handlestringYesThe handle name of the workspace to be created.-
instance_typestringYesThe type of the instance to be created. Supported values are 'db1.shared' and 'db1.small'.db1.shared
member_handlestringYesOrgnization member handles to be invited to join workspace.-
rolestringYes The role for the new member at workspace level. Supported values are:

reader: Has full read access to the workspace.
operator: Has full read access to the workspace and can manage snapshots.
owner: Has full administrative access to the workspace, aside from adding connections to the workspace which is reserved for org owners.
reader

Outputs

NameDescription
workspaceWorkspace details.
memberMember information.