FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

cloudstack_egress_firewall

Creates egress firewall rules for a given network.

Example Usage

resource "cloudstack_egress_firewall" "default" {
  network_id = "6eb22f91-7454-4107-89f4-36afcdf33021"

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

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