library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Delete Network ACL Entry

Deletes a specified entry from a network ACL.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.delete_network_acl_entry \
--arg 'region=<string>' \
--arg 'network_acl_id=<string>' \
--arg 'rule_number=<number>' \
--arg 'is_egress=<bool>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.delete_network_acl_entry
args = {
region = <string>
network_acl_id = <string>
rule_number = <number>
is_egress = <bool>
}
}

Params

NameTypeRequiredDescriptionDefault
region
string
YesThe name of the Region.-
conn
connection.aws
YesName of AWS connection to use. If not provided, the default AWS connection will be used.connection.aws.default
network_acl_id
string
YesThe ID of the network ACL from which to delete the entry.-
rule_number
number
YesThe rule number of the entry to delete.-
is_egress
bool
YesSet to true to delete an egress rule, or false for an ingress rule.false

Outputs

NameDescription
acl_entry_removalConfirmation of network ACL entry removal.