library
turbot/gitlab
OverviewPipelines
0
Triggers
0
Variables
GitHub

Create Group Invitation

Adds a new member to the group by email invite.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gitlab.pipeline.create_group_invitation \
--arg 'group_id=<string>' \
--arg 'email=<string>' \
--arg 'access_level=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = gitlab.pipeline.create_group_invitation
args = {
group_id = <string>
email = <string>
access_level = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
group_idstringYesThe ID or URL-encoded path of the group owned by the authenticated user.-
emailstringYesThe email of the new member.-
access_levelstringYes "A valid access level (defaults: 30, the Developer role)."
* No access (0)
* Minimal access (5) (Introduced in GitLab 13.5.)
* Guest (10)
* Reporter (20)
* Developer (30)
* Maintainer (40)
* Owner (50). Valid for projects in GitLab 14.9 and later.
-

Outputs

NameDescription
invitationInvitation details.