From c4f207522fde36a84598c1402e316c257ea4fbeb Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Tue, 5 Oct 2021 03:46:19 +0200 Subject: [PATCH] terraform: Rename firewall base rule to `k8s-node` --- terraform/firewall.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/firewall.tf b/terraform/firewall.tf index 5f090e91b..c07d5bc3b 100644 --- a/terraform/firewall.tf +++ b/terraform/firewall.tf @@ -1,6 +1,6 @@ # https://docs.k8s.io/latest/installing/installing_platform_agnostic/installing-platform-agnostic.html#installation-network-connectivity-user-infra_installing-platform-agnostic -resource "hcloud_firewall" "k8s-base" { - name = "k8s-base" +resource "hcloud_firewall" "k8s-node" { + name = "k8s-node" apply_to { label_selector = "k8s.io/node=true" } -- GitLab