library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Change IAM User Password

Changes the password of the specified IAM user.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.change_iam_password \
--arg 'user_name=<string>' \
--arg 'old_password=<string>' \
--arg 'new_password=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.change_iam_password
args = {
user_name = <string>
old_password = <string>
new_password = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesThe name of the credential to use.default
user_namestringYesThe name of the IAM user whose password you want to change.-
old_passwordstringYesThe current password of the IAM user.-
new_passwordstringYesThe new password for the IAM user.-

Outputs

This pipeline has no outputs.