W3cubDocs

/Terraform

oneandone_server

Manages a Firewall Policy on 1&1

Example Usage

resource "oneandone_firewall_policy" "fw" {
  name = "test_fw_011"
  rules = [
    {
      "protocol" = "TCP"
      "port_from" = 80
      "port_to" = 80
      "source_ip" = "0.0.0.0"
    },
    {
      "protocol" = "ICMP"
      "source_ip" = "0.0.0.0"
    },
    {
      "protocol" = "TCP"
      "port_from" = 43
      "port_to" = 43
      "source_ip" = "0.0.0.0"
    },
    {
      "protocol" = "TCP"
      "port_from" = 22
      "port_to" = 22
      "source_ip" = "0.0.0.0"
    }
  ]
}

Argument Reference

The following arguments are supported:

  • description - (Optional) Description for the VPN
  • name - (Required) The name of the VPN.

Firewall Policy Rules (rules) support the follwing:

  • protocol - (Required) The protocol for the rule. Allowed values are TCP, UDP, TCP/UDP, ICMP and IPSEC.
  • port_from - (Optional) Defines the start range of the allowed port
  • port_to - (Optional) Defines the end range of the allowed port
  • source_ip - (Optional) Only traffic directed to the respective IP address

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/oneandone/r/firewall_policy.html