Skip to content
Snippets Groups Projects
Verified Commit 28a6e4dd authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

terraform: Clean up ICMP

parent d1106014
No related branches found
No related tags found
No related merge requests found
......@@ -9,12 +9,13 @@ resource "hcloud_firewall" "k8s-node" {
#
# Network reachability tests
rule {
direction = "in"
protocol = "icmp"
source_ips = [
"0.0.0.0/0",
"::/0"
]
description = "ICMP"
direction = "in"
protocol = "icmp"
source_ips = [
"0.0.0.0/0",
"::/0"
]
}
rule {
description = "Kublet"
......@@ -66,12 +67,13 @@ resource "hcloud_firewall" "k8s-master" {
#
# Network reachability tests
rule {
direction = "in"
protocol = "icmp"
source_ips = [
"0.0.0.0/0",
"::/0"
]
description = "ICMP"
direction = "in"
protocol = "icmp"
source_ips = [
"0.0.0.0/0",
"::/0"
]
}
# Kubernetes API
rule {
......@@ -113,12 +115,13 @@ resource "hcloud_firewall" "k8s-ingress" {
#
# Network reachability tests
rule {
direction = "in"
protocol = "icmp"
source_ips = [
"0.0.0.0/0",
"::/0"
]
description = "ICMP"
direction = "in"
protocol = "icmp"
source_ips = [
"0.0.0.0/0",
"::/0"
]
}
rule {
direction = "in"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment