Improve this page

Back to AWS Terraform templates index <–

AWS Network Access control list with Terraform

Aws_Network_Access_control_list by the Sogeti community.

Template Locations

Online documentation

Template reference
Service description

module "AWS_Network_Acl" {
    vpc_id             = "vpc-0ac9efbdb4bf47b83"
    ingress_protocol   = "tcp"
    ingress_rule_no    = 100
    ingress_action     = "allow"
    ingress_from_port  = 80
    ingress_to_port    = 80
    egress_protocol    = "tcp"
    egress_rule_no     = 200
    egress_action      = "allow"
    egress_from_port   = 443
    egress_to_port     = 443
}