library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

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
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
access_key_idstringYesThe access key ID for the access key ID and secret access key you want to update.-
statusstringYesThe status you want to assign to the access key. Valid values: Active | Inactive-
user_namestringNoThe name of the user whose key you want to update.-

Outputs

This pipeline has no outputs.