reorganize firewall rules to make it more obvious what has changed

This commit is contained in:
2025-03-15 20:49:40 +01:00
parent 1eb2ce341a
commit a1e9f43a31
3 changed files with 42 additions and 40 deletions

View File

@@ -23,7 +23,22 @@ variable "agents" {
}))
}
variable "development_ips" {
type = list(string)
variable "ping_enabled" {
type = bool
default = true
}
variable "public_tcp_services" {
type = map(list(string))
default = {}
}
variable "kubernetes_exposed_ips" {
type = list(string)
default = []
}
variable "ssh_exposed_ips" {
type = list(string)
default = []
}