resource "aws_network_acl" "acl-0a511ffe243e3c7e2" {
  #checkov:skip=CKV_AWS_229: Ensure no NACL allow inbound from 0.0.0.0/0 to port 21. Migrated existing NACL as-is.
  #checkov:skip=CKV_AWS_230: Ensure no NACL allow inbound from 0.0.0.0/0 to port 20. Migrated existing NACL as-is.
  #checkov:skip=CKV_AWS_231: Ensure no NACL allow inbound from 0.0.0.0/0 to port 22. Migrated existing NACL as-is.
  #checkov:skip=CKV_AWS_232: Ensure no NACL allow inbound from 0.0.0.0/0 to port 23. Migrated existing NACL as-is.
  #checkov:skip=CKV2_AWS_1: Ensure that all network ACLs are attached to subnets. Migrated existing NACL as-is.
  egress {
    action     = "allow"
    cidr_block = "0.0.0.0/0"
    from_port  = "0"
    icmp_code  = "0"
    icmp_type  = "0"
    protocol   = "-1"
    rule_no    = "100"
    to_port    = "0"
  }

  ingress {
    action     = "allow"
    cidr_block = "0.0.0.0/0"
    from_port  = "0"
    icmp_code  = "0"
    icmp_type  = "0"
    protocol   = "-1"
    rule_no    = "100"
    to_port    = "0"
  }

  subnet_ids = ["subnet-023fe33d2777fe12f", "subnet-026cb37a7ed357b9d", "subnet-047ecb418f5388ce8", "subnet-0891fe55bcf4f6f67", "subnet-093ae78fe13d25522", "subnet-0d6ae7dbcaa3751a4", "subnet-0da235fc7a7c20dc1", "subnet-0e75ad20fca1f1d6c", "subnet-0eace17420ea57e0a"]

  tags = {
    Name = "MAX-FF-P-DEFAULT-NACL"
  }

  tags_all = {
    Name = "MAX-FF-P-DEFAULT-NACL"
  }

  vpc_id = "vpc-048e1c7481899cd24"
}
