library
turbot/aws
Get Involved
Version
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
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 |
access_key_id | string | Yes | The access key ID for the access key ID and secret access key you want to update. | - |
status | string | Yes | The status you want to assign to the access key. Valid values: Active | Inactive | - |
user_name | string | No | The name of the user whose key you want to update. | - |
Outputs
This pipeline has no outputs.