library
turbot/teams
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Create User

Create a new user.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run teams.pipeline.create_user \
--arg 'display_name=<string>' \
--arg 'account_enabled=<bool>' \
--arg 'mail_nickname=<string>' \
--arg 'user_principal_name=<string>' \
--arg 'password=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = teams.pipeline.create_user
args = {
display_name = <string>
account_enabled = <bool>
mail_nickname = <string>
user_principal_name = <string>
password = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
cred
string
YesName for credentials to use. If not provided, the default credentials will be used.default
display_name
string
YesThe name to display in the address book for the user.-
account_enabled
bool
YesIf the account is enabled then true; otherwise, false.-
mail_nickname
string
YesThe mail alias for the user.-
user_principal_name
string
YesThe user principal name (someuser@contoso.com).-
password
string
YesThe password for the user.-

Outputs

NameDescription
userThe created user.