samples
turbot/flowpipe-samples/invite-pipes-organization-member
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
pipes_cred | string | Yes | Name for Pipes credentials to use. If not provided, the default credentials will be used. | default |
organization_handle | string | Yes | The handle of the organization where the workspace has to be created. | - |
workspace_handle | string | Yes | The handle name of the workspace to be created. | - |
instance_type | string | Yes | The type of the instance to be created. Supported values are 'db1.shared' and 'db1.small'. | db1.shared |
member_handle | string | Yes | Orgnization member handles to be invited to join workspace. | - |
role | string | Yes | 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
Name | Description |
---|---|
workspace | Workspace details. |
member | Member information. |