typhoon/digital-ocean/container-linux/kubernetes/network.tf

53 lines
1.3 KiB
Terraform
Raw Normal View History

resource "digitalocean_firewall" "rules" {
name = "${var.cluster_name}"
tags = ["${var.cluster_name}-controller", "${var.cluster_name}-worker"]
# allow ssh, http/https ingress, and peer-to-peer traffic
inbound_rule = [
{
2017-08-13 03:25:05 +02:00
protocol = "tcp"
port_range = "22"
source_addresses = ["0.0.0.0/0", "::/0"]
},
{
2017-08-13 03:25:05 +02:00
protocol = "tcp"
port_range = "80"
source_addresses = ["0.0.0.0/0", "::/0"]
},
{
2017-08-13 03:25:05 +02:00
protocol = "tcp"
port_range = "443"
source_addresses = ["0.0.0.0/0", "::/0"]
},
{
2017-08-13 03:25:05 +02:00
protocol = "udp"
port_range = "all"
source_tags = ["${var.cluster_name}-controller", "${var.cluster_name}-worker"]
},
{
2017-08-13 03:25:05 +02:00
protocol = "tcp"
port_range = "all"
source_tags = ["${var.cluster_name}-controller", "${var.cluster_name}-worker"]
},
]
# allow all outbound traffic
outbound_rule = [
{
2017-08-13 03:25:05 +02:00
protocol = "icmp"
destination_addresses = ["0.0.0.0/0", "::/0"]
},
{
2017-08-13 03:25:05 +02:00
protocol = "udp"
port_range = "all"
destination_addresses = ["0.0.0.0/0", "::/0"]
},
{
2017-08-13 03:25:05 +02:00
protocol = "tcp"
port_range = "all"
destination_addresses = ["0.0.0.0/0", "::/0"]
},
]
}