library
turbot/aws
Get Involved
Version
Pipeline: 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
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
user_name | string | Yes | The name of the IAM user whose password you want to change. | - |
old_password | string | Yes | The current password of the IAM user. | - |
new_password | string | Yes | The new password for the IAM user. | - |
Outputs
This pipeline has no outputs.