library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Detach IAM Group Policy

Detaches a policy from an IAM group.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.detach_iam_group_policy \
--arg 'group_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_group_policy
args = {
group_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
group_name
string
YesThe name of the IAM group from which the policy will be detached.-
policy_arn
string
YesThe ARN of the IAM policy to be detached from the group.-

Outputs

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