Improve this page

Back to AWS Terraform templates index <–

AWS Network Access control list association rule with Terraform

Aws_Network Access control list association rule by the Sogeti community.

Template Locations

Online documentation

Template reference
Service description

module "AWS_Network_Acl_Association_rule" {
    vpc_id      = "vpc-0094d1a650b1d3486"
    rule_number = 200
    egress      = "false"
    protocol    = "tcp"
    rule_action = "allow"
    cidr_block  = "10.0.2.0/16"
    from_port   = "22"
    to_port     = "22"
}