mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 17:42:47 +00:00
Fix: cIlium node-to-node encryption
This commit is contained in:
@@ -23,6 +23,7 @@ tunnel: "vxlan"
|
||||
autoDirectNodeRoutes: false
|
||||
devices: [eth0,eth1]
|
||||
|
||||
l7Proxy: false
|
||||
encryption:
|
||||
enabled: true
|
||||
type: wireguard
|
||||
|
||||
@@ -127,7 +127,7 @@ data:
|
||||
# - geneve
|
||||
tunnel: vxlan
|
||||
# Enables L7 proxy for L7 policy enforcement and visibility
|
||||
enable-l7-proxy: "true"
|
||||
enable-l7-proxy: "false"
|
||||
|
||||
enable-ipv4-masquerade: "true"
|
||||
enable-ipv6-masquerade: "true"
|
||||
|
||||
@@ -25,6 +25,12 @@ resource "scaleway_instance_security_group" "controlplane" {
|
||||
}
|
||||
}
|
||||
|
||||
inbound_rule {
|
||||
action = "accept"
|
||||
protocol = "TCP"
|
||||
port = 4240
|
||||
ip_range = "::/0"
|
||||
}
|
||||
inbound_rule {
|
||||
action = "accept"
|
||||
protocol = "ANY"
|
||||
@@ -43,6 +49,12 @@ resource "scaleway_instance_security_group" "controlplane" {
|
||||
port = 51820
|
||||
ip_range = "::/0"
|
||||
}
|
||||
|
||||
inbound_rule {
|
||||
action = "accept"
|
||||
protocol = "ICMP"
|
||||
ip_range = "::/0"
|
||||
}
|
||||
}
|
||||
|
||||
resource "scaleway_instance_security_group" "web" {
|
||||
@@ -60,6 +72,12 @@ resource "scaleway_instance_security_group" "web" {
|
||||
}
|
||||
}
|
||||
|
||||
inbound_rule {
|
||||
action = "accept"
|
||||
protocol = "TCP"
|
||||
port = 4240
|
||||
ip_range = "::/0"
|
||||
}
|
||||
inbound_rule {
|
||||
action = "accept"
|
||||
protocol = "ANY"
|
||||
@@ -78,6 +96,12 @@ resource "scaleway_instance_security_group" "web" {
|
||||
port = 51820
|
||||
ip_range = "::/0"
|
||||
}
|
||||
|
||||
inbound_rule {
|
||||
action = "accept"
|
||||
protocol = "ICMP"
|
||||
ip_range = "::/0"
|
||||
}
|
||||
}
|
||||
|
||||
resource "scaleway_instance_security_group" "worker" {
|
||||
|
||||
Reference in New Issue
Block a user