library
turbot/aws
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
region | string | Yes | The name of the Region. | - |
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
network_acl_id | string | Yes | The ID of the network ACL from which to delete the entry. | - |
rule_number | number | Yes | The rule number of the entry to delete. | - |
is_egress | bool | Yes | Set to true to delete an egress rule, or false for an ingress rule. | false |
Outputs
Name | Description |
---|---|
acl_entry_removal | Confirmation of network ACL entry removal. |