1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-05-25 17:06:21 +02:00

Fix terraform fmt in firewall rules

This commit is contained in:
Dalton Hubble 2020-06-29 23:04:54 -07:00
parent 430d139a5b
commit 0ba2c1a4da
2 changed files with 4 additions and 4 deletions

View File

@ -117,7 +117,7 @@ resource "azurerm_network_security_rule" "controller-apiserver" {
resource "azurerm_network_security_rule" "controller-cilium-health" {
resource_group_name = azurerm_resource_group.cluster.name
count = var.networking == "cilium" ? 1 : 0
count = var.networking == "cilium" ? 1 : 0
name = "allow-cilium-health"
network_security_group_name = azurerm_network_security_group.controller.name
@ -299,7 +299,7 @@ resource "azurerm_network_security_rule" "worker-https" {
resource "azurerm_network_security_rule" "worker-cilium-health" {
resource_group_name = azurerm_resource_group.cluster.name
count = var.networking == "cilium" ? 1 : 0
count = var.networking == "cilium" ? 1 : 0
name = "allow-cilium-health"
network_security_group_name = azurerm_network_security_group.worker.name

View File

@ -117,7 +117,7 @@ resource "azurerm_network_security_rule" "controller-apiserver" {
resource "azurerm_network_security_rule" "controller-cilium-health" {
resource_group_name = azurerm_resource_group.cluster.name
count = var.networking == "cilium" ? 1 : 0
count = var.networking == "cilium" ? 1 : 0
name = "allow-cilium-health"
network_security_group_name = azurerm_network_security_group.controller.name
@ -299,7 +299,7 @@ resource "azurerm_network_security_rule" "worker-https" {
resource "azurerm_network_security_rule" "worker-cilium-health" {
resource_group_name = azurerm_resource_group.cluster.name
count = var.networking == "cilium" ? 1 : 0
count = var.networking == "cilium" ? 1 : 0
name = "allow-cilium-health"
network_security_group_name = azurerm_network_security_group.worker.name