FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

triton_firewall_rule

The triton_firewall_rule resource represents a rule for the Triton cloud firewall.

Example Usages

Allow traffic on ports tcp/80 and tcp/443 to machines with the ‘www’ tag from any source

resource "triton_firewall_rule" "www" {
    rule = "FROM any TO tag www ALLOW tcp (PORT 80 AND PORT 443)"
    enabled = true
}
                

Block traffic on port tcp/143 to all machines

resource "triton_firewall_rule" "imap" {
    rule = "FROM any TO all vms BLOCK tcp port 143"
    enabled = true
}
                

Argument Reference

The following arguments are supported:

Attribute Reference

The following attributes are exported:


See the source of this document at Terraform.io