FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

cloudstack_network_acl_rule

Creates network ACL rules for a given network ACL.

Example Usage

resource "cloudstack_network_acl_rule" "default" {
  acl_id = "f3843ce0-334c-4586-bbd3-0c2e2bc946c6"

  rule {
    action = "allow"
    cidr_list = ["10.0.0.0/8"]
    protocol = "tcp"
    ports = ["80", "1000-2000"]
    traffic_type = "ingress"
  }
}

Argument Reference

The following arguments are supported:

The rule block supports:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io