library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Update IAM Access Key

Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.update_iam_access_key \
--arg 'access_key_id=<string>' \
--arg 'status=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.update_iam_access_key
args = {
access_key_id = <string>
status = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.aws
YesName of AWS connection to use. If not provided, the default AWS connection will be used.connection.aws.default
access_key_id
string
YesThe access key ID for the access key ID and secret access key you want to update.-
status
string
YesThe status you want to assign to the access key. Valid values: Active | Inactive-
user_name
string
NoThe name of the user whose key you want to update.-

Outputs

This pipeline has no outputs.