library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Detach IAM Role Policy

Detaches a policy from an IAM role.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.detach_iam_role_policy \
--arg 'role_name=<string>' \
--arg 'policy_arn=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.detach_iam_role_policy
args = {
role_name = <string>
policy_arn = <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
role_name
string
YesThe name of the IAM role from which the policy will be detached.-
policy_arn
string
YesThe ARN of the IAM policy to be detached from the role.-

Outputs

NameDescription
resultConfirmation message that the policy has been detached from the role.