library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

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>'

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>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
network_acl_idstringYesThe ID of the network ACL from which to delete the entry.-
rule_numbernumberYesThe rule number of the entry to delete.-
is_egressboolYesSet to true to delete an egress rule, or false for an ingress rule.

Outputs

NameDescription
acl_entry_removalConfirmation of network ACL entry removal.