standard
turbot/aws_compliance

Pipeline: Revoke VPC security group rule

Removes the specified inbound (ingress) or outbound (egress) rules from a security group.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws_compliance.pipeline.revoke_vpc_security_group_rule \
--arg 'region=<string>' \
--arg 'security_group_id=<string>' \
--arg 'security_group_rule_id=<string>' \
--arg 'type=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws_compliance.pipeline.revoke_vpc_security_group_rule
args = {
region = <string>
security_group_id = <string>
security_group_rule_id = <string>
type = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
region
string
YesAWS Region of the resource(s).-
conn
connection.aws
YesName of the AWS connection to be used for any authenticated actions.connection.aws.default
security_group_id
string
YesThe ID of the security group.-
security_group_rule_id
string
YesThe ID of the security group rule.-
type
string
YesThe type of the Security group rule (ingress or egress).-

Outputs

This pipeline has no outputs.

Tags

category = Compliance
folder = Internal
mod = aws
service = AWS/VPC