Optimize service port definition
This commit is contained in:
@@ -1,9 +1,43 @@
|
|||||||
locals {
|
locals {
|
||||||
app_slug = "${var.instance}${var.component == "" ? "" : "-"}${var.component}"
|
app_slug = "${var.instance}${var.component == "" ? "" : "-"}${var.component}"
|
||||||
|
application_labels = merge(var.labels, {
|
||||||
|
"app.kubernetes.io/component" = "authentik-application"
|
||||||
|
})
|
||||||
app_name = var.app_name != "" ? var.app_name : var.component == var.instance ? var.instance : format("%s-%s", var.instance, var.component)
|
app_name = var.app_name != "" ? var.app_name : var.component == var.instance ? var.instance : format("%s-%s", var.instance, var.component)
|
||||||
main_group = format("app-%s", local.app_slug)
|
main_group = format("app-%s", local.app_slug)
|
||||||
|
secret_name = var.cert_name != "" ? var.cert_name : "${local.app_slug}-cert"
|
||||||
url_icon = startswith(var.icon, "fa-") ? "fa://${var.icon}" : format("https://%s/%s", var.dns_name, var.icon)
|
url_icon = startswith(var.icon, "fa-") ? "fa://${var.icon}" : format("https://%s/%s", var.dns_name, var.icon)
|
||||||
|
rules_icons = [{
|
||||||
|
"host" = var.rule_mapper.host
|
||||||
|
"http" = {
|
||||||
|
"paths" = [for mapper in var.rule_mapper.paths : {
|
||||||
|
"path" = "/${var.icon}"
|
||||||
|
"pathType" = "Prefix"
|
||||||
|
"backend" = mapper.backend
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "kubectl_manifest" "ingress_icon" {
|
||||||
|
count = startswith(var.icon, "fa-") ? 0 : 1
|
||||||
|
force_conflicts = true
|
||||||
|
yaml_body = <<-EOF
|
||||||
|
apiVersion: "networking.k8s.io/v1"
|
||||||
|
kind: "Ingress"
|
||||||
|
metadata:
|
||||||
|
name: "${local.app_slug}-icons"
|
||||||
|
namespace: "${var.namespace}"
|
||||||
|
labels: ${jsonencode(local.application_labels)}
|
||||||
|
spec:
|
||||||
|
ingressClassName: "${var.ingress_class}"
|
||||||
|
rules: ${jsonencode(local.rules_icons)}
|
||||||
|
tls:
|
||||||
|
- hosts: ${jsonencode([var.dns_name])}
|
||||||
|
secretName: "${local.secret_name}"
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
data "authentik_group" "akadmin" {
|
data "authentik_group" "akadmin" {
|
||||||
name = "authentik Admins"
|
name = "authentik Admins"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
terraform {
|
terraform {
|
||||||
required_providers {
|
required_providers {
|
||||||
|
kubectl = {
|
||||||
|
source = "gavinbunney/kubectl"
|
||||||
|
version = "~> 1.14.0"
|
||||||
|
}
|
||||||
authentik = {
|
authentik = {
|
||||||
source = "goauthentik/authentik"
|
source = "goauthentik/authentik"
|
||||||
version = "~> 2023.5.0"
|
version = "~> 2023.5.0"
|
||||||
|
|||||||
@@ -30,3 +30,46 @@ variable "backchannel_providers" {
|
|||||||
type = list(number)
|
type = list(number)
|
||||||
default = null
|
default = null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "ingress_class" {
|
||||||
|
type = string
|
||||||
|
default = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "rule_mapper" {
|
||||||
|
type = object({
|
||||||
|
host = string
|
||||||
|
paths = list(object({
|
||||||
|
path = optional(string)
|
||||||
|
type = optional(string)
|
||||||
|
backend = object({
|
||||||
|
service = object({
|
||||||
|
name = string
|
||||||
|
port = object({
|
||||||
|
name = string
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}))
|
||||||
|
})
|
||||||
|
default = {
|
||||||
|
host="not.defined"
|
||||||
|
paths= []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "cert_name" {
|
||||||
|
type = string
|
||||||
|
default = ""
|
||||||
|
description = "Give a secret name for tls, if empty will use the ingress cert_name"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "namespace" {
|
||||||
|
type = string
|
||||||
|
default = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "labels" {
|
||||||
|
type = map(string)
|
||||||
|
default = {}
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,42 +3,11 @@ locals {
|
|||||||
forward_labels = merge(var.labels, {
|
forward_labels = merge(var.labels, {
|
||||||
"app.kubernetes.io/component" = "authentik-forward"
|
"app.kubernetes.io/component" = "authentik-forward"
|
||||||
})
|
})
|
||||||
main_group = format("app-%s", var.app_name)
|
external_url = format("https://%s", var.dns_name)
|
||||||
external_url = format("https://%s", var.dns_names[0])
|
|
||||||
rules_icons = [for v in var.dns_names : {
|
|
||||||
"host" = "${v}"
|
|
||||||
"http" = {
|
|
||||||
"paths" = [{
|
|
||||||
"backend" = {
|
|
||||||
"service" = var.service
|
|
||||||
}
|
|
||||||
"path" = "/${var.icon}"
|
|
||||||
"pathType" = "Prefix"
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
}]
|
|
||||||
forward_outpost_providers = jsondecode(data.http.get_forward_outpost.response_body).results[0].providers
|
forward_outpost_providers = jsondecode(data.http.get_forward_outpost.response_body).results[0].providers
|
||||||
forward_outpost_pk = jsondecode(data.http.get_forward_outpost.response_body).results[0].pk
|
forward_outpost_pk = jsondecode(data.http.get_forward_outpost.response_body).results[0].pk
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "kubectl_manifest" "ingress_icon" {
|
|
||||||
force_conflicts = true
|
|
||||||
yaml_body = <<-EOF
|
|
||||||
apiVersion: "networking.k8s.io/v1"
|
|
||||||
kind: "Ingress"
|
|
||||||
metadata:
|
|
||||||
name: "${local.app_slug}-icons"
|
|
||||||
namespace: "${var.namespace}"
|
|
||||||
labels: ${jsonencode(local.forward_labels)}
|
|
||||||
spec:
|
|
||||||
ingressClassName: "${var.ingress_class}"
|
|
||||||
rules: ${jsonencode(local.rules_icons)}
|
|
||||||
tls:
|
|
||||||
- hosts: ${jsonencode(var.dns_names)}
|
|
||||||
secretName: "${var.instance}-cert"
|
|
||||||
EOF
|
|
||||||
}
|
|
||||||
|
|
||||||
data "authentik_flow" "default_authorization_flow" {
|
data "authentik_flow" "default_authorization_flow" {
|
||||||
slug = "default-provider-authorization-implicit-consent"
|
slug = "default-provider-authorization-implicit-consent"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,37 +18,15 @@ variable "labels" {
|
|||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "ingress_class" {
|
variable "dns_name" {
|
||||||
type = string
|
type = string
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "icon" {
|
|
||||||
type = string
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "dns_names" {
|
|
||||||
type = list(string)
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "access_token_validity" {
|
variable "access_token_validity" {
|
||||||
type = string
|
type = string
|
||||||
default = "hours=10" // ;minutes=10
|
default = "hours=10" // ;minutes=10
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "app_name" {
|
|
||||||
type = string
|
|
||||||
default = ""
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "service" {
|
|
||||||
type = object({
|
|
||||||
name = string
|
|
||||||
port = object({
|
|
||||||
number = number
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "request_headers" {
|
variable "request_headers" {
|
||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,23 +4,22 @@ locals {
|
|||||||
pres_labels = merge(var.labels, {
|
pres_labels = merge(var.labels, {
|
||||||
"app.kubernetes.io/component" = "presentation"
|
"app.kubernetes.io/component" = "presentation"
|
||||||
})
|
})
|
||||||
rules = [for v in var.dns_names : {
|
rules = [for rule in var.rules_mapper : {
|
||||||
"host" = "${v}"
|
"host" = rule.host
|
||||||
"http" = {
|
"http" = {
|
||||||
"paths" = [for mapper in var.services_mapping : {
|
"paths" = [for mapper in rule.paths : {
|
||||||
"path" = "/${mapper.path}"
|
"path" = "/${mapper.path}"
|
||||||
"pathType" = "Prefix"
|
"pathType" = mapper.type != null && mapper.type != "" ? mapper.type : "Prefix"
|
||||||
"backend" = {
|
"backend" = mapper.backend
|
||||||
"service" = mapper.service
|
|
||||||
}
|
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
dns_names = [for rule in var.rules_mapper : rule.host]
|
||||||
secret_name = var.cert_name != "" ? var.cert_name : "${local.app_slug}-cert"
|
secret_name = var.cert_name != "" ? var.cert_name : "${local.app_slug}-cert"
|
||||||
tls = var.entrypoint == "" || length(regexall(".*websecure.*", var.entrypoint)) > 0 ? [
|
tls = var.entrypoint == "" || length(regexall(".*websecure.*", var.entrypoint)) > 0 ? [
|
||||||
{
|
{
|
||||||
secretName = local.secret_name
|
secretName = local.secret_name
|
||||||
hosts = var.dns_names
|
hosts = local.dns_names
|
||||||
}
|
}
|
||||||
] : []
|
] : []
|
||||||
middlewares = concat(
|
middlewares = concat(
|
||||||
@@ -48,7 +47,7 @@ resource "kubectl_manifest" "certificate" {
|
|||||||
labels: ${jsonencode(local.pres_labels)}
|
labels: ${jsonencode(local.pres_labels)}
|
||||||
spec:
|
spec:
|
||||||
secretName: "${local.secret_name}"
|
secretName: "${local.secret_name}"
|
||||||
dnsNames: ${jsonencode(var.dns_names)}
|
dnsNames: ${jsonencode(local.dns_names)}
|
||||||
issuerRef:
|
issuerRef:
|
||||||
kind: "ClusterIssuer"
|
kind: "ClusterIssuer"
|
||||||
name: "${var.issuer}"
|
name: "${var.issuer}"
|
||||||
|
|||||||
@@ -17,24 +17,28 @@ variable "ingress_class" {
|
|||||||
variable "labels" {
|
variable "labels" {
|
||||||
type = map(string)
|
type = map(string)
|
||||||
}
|
}
|
||||||
variable "dns_names" {
|
|
||||||
type = list(string)
|
|
||||||
}
|
|
||||||
variable "middlewares" {
|
variable "middlewares" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
default = []
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "services_mapping" {
|
variable "rules_mapper" {
|
||||||
type = list(object({
|
type = list(object({
|
||||||
path = optional(string)
|
host = string
|
||||||
service = object({
|
paths = list(object({
|
||||||
name= string
|
path = optional(string)
|
||||||
port = object({
|
type = optional(string)
|
||||||
number = number
|
backend = object({
|
||||||
|
service = object({
|
||||||
|
name = string
|
||||||
|
port = object({
|
||||||
|
name = string
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
}))
|
||||||
}))
|
}))
|
||||||
|
description = "Simplified rules mapper for ingress"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "entrypoint" {
|
variable "entrypoint" {
|
||||||
|
|||||||
23
rabbitmq/outputs.tf
Normal file
23
rabbitmq/outputs.tf
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
output "conn_string" {
|
||||||
|
value = "mqtt://${urlencode(data.kubernetes_secret_v1.rabbit_secret.data["username"])}:${urlencode(data.kubernetes_secret_v1.rabbit_secret.data["password"])}@${local.app_slug}-mq.${var.namespace}.svc:1883"
|
||||||
|
}
|
||||||
|
|
||||||
|
output "service" {
|
||||||
|
value = "${local.app_slug}-mq.${var.namespace}.svc"
|
||||||
|
}
|
||||||
|
|
||||||
|
output "db_host" {
|
||||||
|
value = "${local.app_slug}-mq"
|
||||||
|
}
|
||||||
|
|
||||||
|
output "db_port" {
|
||||||
|
value = "1883"
|
||||||
|
}
|
||||||
|
|
||||||
|
output "cert_secret_name" {
|
||||||
|
value = local.secret_name
|
||||||
|
}
|
||||||
|
|
||||||
|
output "user_secret_name" {
|
||||||
|
value = "${local.app_slug}-user"
|
||||||
|
}
|
||||||
8
rabbitmq/providers.tf
Normal file
8
rabbitmq/providers.tf
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
terraform {
|
||||||
|
required_providers {
|
||||||
|
kubectl = {
|
||||||
|
source = "gavinbunney/kubectl"
|
||||||
|
version = "~> 1.14.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
94
rabbitmq/rabbitmq.tf
Normal file
94
rabbitmq/rabbitmq.tf
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
locals {
|
||||||
|
app_slug = "${var.instance}${var.component == "" ? "" : "-"}${var.component}"
|
||||||
|
rabbit_labels = merge(var.labels, {
|
||||||
|
"app.kubernetes.io/component" = "rabbitmq"
|
||||||
|
})
|
||||||
|
secret_name = var.cert_name != "" ? var.cert_name : "${local.app_slug}-cert"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "kubectl_manifest" "certificate" {
|
||||||
|
count = var.cert_name == "" ? 1 : 0
|
||||||
|
yaml_body = <<-EOF
|
||||||
|
apiVersion: "cert-manager.io/v1"
|
||||||
|
kind: "Certificate"
|
||||||
|
metadata:
|
||||||
|
name: "${local.app_slug}"
|
||||||
|
namespace: "${var.namespace}"
|
||||||
|
labels: ${jsonencode(local.rabbit_labels)}
|
||||||
|
spec:
|
||||||
|
secretName: "${local.secret_name}"
|
||||||
|
dnsNames:
|
||||||
|
- "${local.app_slug}-mq.${var.namespace}.svc"
|
||||||
|
- "*.${local.app_slug}-mq-nodes.${var.namespace}.svc"
|
||||||
|
issuerRef:
|
||||||
|
kind: "ClusterIssuer"
|
||||||
|
name: "${var.issuer}"
|
||||||
|
group: "cert-manager.io"
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "kubectl_manifest" "rabbit_secret" {
|
||||||
|
yaml_body = <<-EOF
|
||||||
|
apiVersion: "secretgenerator.mittwald.de/v1alpha1"
|
||||||
|
kind: "StringSecret"
|
||||||
|
metadata:
|
||||||
|
name: "${local.app_slug}-user"
|
||||||
|
namespace: "${var.namespace}"
|
||||||
|
labels: ${jsonencode(local.rabbit_labels)}
|
||||||
|
spec:
|
||||||
|
forceRegenerate: false
|
||||||
|
data:
|
||||||
|
username: "${var.instance}"
|
||||||
|
port: "5672"
|
||||||
|
host: "${local.app_slug}-mq.${var.namespace}.svc"
|
||||||
|
fields:
|
||||||
|
- fieldName: "password"
|
||||||
|
length: "32"
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
data "kubernetes_secret_v1" "rabbit_secret" {
|
||||||
|
depends_on = [kubectl_manifest.rabbit_secret]
|
||||||
|
metadata {
|
||||||
|
name = "${local.app_slug}-user"
|
||||||
|
namespace = var.namespace
|
||||||
|
labels = local.rabbit_labels
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# based on https://github.com/rabbitmq/cluster-operator/tree/main/docs/examples
|
||||||
|
|
||||||
|
resource "kubectl_manifest" "rabbitmq" {
|
||||||
|
depends_on = [
|
||||||
|
kubectl_manifest.certificate,
|
||||||
|
kubectl_manifest.rabbit_secret,
|
||||||
|
data.kubernetes_secret_v1.rabbit_secret,
|
||||||
|
]
|
||||||
|
yaml_body = <<-EOF
|
||||||
|
apiVersion: rabbitmq.com/v1beta1
|
||||||
|
kind: RabbitmqCluster
|
||||||
|
metadata:
|
||||||
|
name: "${local.app_slug}-mq"
|
||||||
|
namespace: "${var.namespace}"
|
||||||
|
labels: ${jsonencode(local.rabbit_labels)}
|
||||||
|
spec:
|
||||||
|
replicas: ${var.replicas}
|
||||||
|
tls:
|
||||||
|
secretName: ${local.secret_name}
|
||||||
|
rabbitmq:
|
||||||
|
erlangInetConfig: |
|
||||||
|
{inet6, true}.
|
||||||
|
envConfig: |
|
||||||
|
SERVER_ADDITIONAL_ERL_ARGS="-kernel inetrc '/etc/rabbitmq/erl_inetrc' -proto_dist inet6_tcp"
|
||||||
|
RABBITMQ_CTL_ERL_ARGS="-proto_dist inet6_tcp"
|
||||||
|
additionalConfig: |
|
||||||
|
cluster_formation.k8s.host = kubernetes.default.svc.cluster.local
|
||||||
|
default_user=${data.kubernetes_secret_v1.rabbit_secret.data["username"]}
|
||||||
|
default_pass=${data.kubernetes_secret_v1.rabbit_secret.data["password"]}
|
||||||
|
additionalPlugins:
|
||||||
|
- rabbitmq_mqtt
|
||||||
|
- rabbitmq_web_mqtt
|
||||||
|
service:
|
||||||
|
ipFamilyPolicy: "PreferDualStack"
|
||||||
|
EOF
|
||||||
|
}
|
||||||
28
rabbitmq/variables.tf
Normal file
28
rabbitmq/variables.tf
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
variable "component" {
|
||||||
|
type = string
|
||||||
|
}
|
||||||
|
variable "instance" {
|
||||||
|
type = string
|
||||||
|
}
|
||||||
|
variable "namespace" {
|
||||||
|
type = string
|
||||||
|
}
|
||||||
|
variable "labels" {
|
||||||
|
type = map(string)
|
||||||
|
}
|
||||||
|
variable "annotations" {
|
||||||
|
type = map(string)
|
||||||
|
default = {}
|
||||||
|
}
|
||||||
|
variable "issuer" {
|
||||||
|
type = string
|
||||||
|
}
|
||||||
|
variable "replicas" {
|
||||||
|
type = number
|
||||||
|
default = 1
|
||||||
|
}
|
||||||
|
variable "cert_name" {
|
||||||
|
type = string
|
||||||
|
default = ""
|
||||||
|
description = "Give a secret name for tls, if empty and entrypointis websecure or empty, one will be created"
|
||||||
|
}
|
||||||
@@ -1,11 +1,15 @@
|
|||||||
output "name" {
|
output "name" {
|
||||||
value = local.app_slug
|
value = local.app_slug
|
||||||
}
|
}
|
||||||
output "default_definition" {
|
output "ingress_backend_exposure" {
|
||||||
value = {
|
value = [for port_map in var.port_mapper :
|
||||||
"name" = "${local.app_slug}"
|
{
|
||||||
"port" = {
|
"service" = {
|
||||||
"number" = var.ports[0]
|
"name" = "${local.app_slug}"
|
||||||
|
"port" = {
|
||||||
|
"name" = port_map.name
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,21 +7,10 @@ locals {
|
|||||||
"protocol" = var.protocols[idx]
|
"protocol" = var.protocols[idx]
|
||||||
"targetPort" = target
|
"targetPort" = target
|
||||||
}] : []
|
}] : []
|
||||||
ext_ports = var.svc_type == "ExternalName" ? [for idx, target in var.targets : {
|
node_ports = var.svc_type == "NodePort" ? [for port_map in var.port_mapper : {
|
||||||
"name" = target
|
"port" = port_map.port
|
||||||
"port" = var.ports[idx]
|
"targetPort" = port_map.target
|
||||||
"protocol" = var.protocols[idx]
|
"nodePort" = port_map.port
|
||||||
"targetPort" = var.ports[idx]
|
|
||||||
}] : []
|
|
||||||
lb_ports = var.svc_type == "LoadBalancer" ? [for port in var.lb_ports : {
|
|
||||||
"port" = port.port.number
|
|
||||||
"name" = port.name
|
|
||||||
"targetPort" = port.port.number
|
|
||||||
}] : []
|
|
||||||
node_ports = var.svc_type == "NodePort" ? [for idx, port in var.ports : {
|
|
||||||
"port" = port
|
|
||||||
"targetPort" = port
|
|
||||||
"nodePort" = var.node_ports[idx]
|
|
||||||
}] : []
|
}] : []
|
||||||
metadata = merge(
|
metadata = merge(
|
||||||
{
|
{
|
||||||
@@ -40,9 +29,9 @@ locals {
|
|||||||
selector = local.selector
|
selector = local.selector
|
||||||
},
|
},
|
||||||
"ExternalName" = {
|
"ExternalName" = {
|
||||||
type = "ExternalName"
|
type = "ExternalName"
|
||||||
externalName = var.target_host
|
externalName = var.target_host
|
||||||
ports = local.ext_ports
|
ports = local.default_ports
|
||||||
},
|
},
|
||||||
"NodePort" = {
|
"NodePort" = {
|
||||||
type = "NodePort"
|
type = "NodePort"
|
||||||
@@ -78,6 +67,6 @@ resource "kubectl_manifest" "endpoint" {
|
|||||||
subsets:
|
subsets:
|
||||||
- addresses:
|
- addresses:
|
||||||
- ip: ${var.target_host}
|
- ip: ${var.target_host}
|
||||||
ports: ${jsonencode([for port in var.ports : { "port" = port }])}
|
ports: ${jsonencode([for port_map in var.port_mapper : { "port" = port_map.port }])}
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,43 +36,38 @@ variable "ip_family" {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "ports" {
|
variable "port_mapper" {
|
||||||
type = list(number)
|
type = list(object({
|
||||||
default = [80]
|
name = optional(string)
|
||||||
}
|
port = number
|
||||||
variable "targets" {
|
protocol = string
|
||||||
type = list(string)
|
target = string
|
||||||
default = ["http"]
|
}))
|
||||||
}
|
default = [{
|
||||||
variable "protocols" {
|
"name" = "80-TCP",
|
||||||
type = list(any)
|
"port" = 80,
|
||||||
default = ["TCP"]
|
"protocol" = "TCP"
|
||||||
|
"target" = "80-TCP"
|
||||||
|
}]
|
||||||
validation {
|
validation {
|
||||||
condition = alltrue([for proto in var.protocols : contains(["TCP", "UDP"], proto)])
|
condition = alltrue(
|
||||||
error_message = "Only TCP or UDP is allowed"
|
[for port_map in var.port_mapper : contains(["TCP", "UDP"], port_map.protocol)]
|
||||||
|
)
|
||||||
|
error_message = "Only numeric on containerPort and TCP or UDP on protocol is allowed"
|
||||||
}
|
}
|
||||||
|
# validation {
|
||||||
|
# condition = (var.svc_type == "NodePort") == alltrue(
|
||||||
|
# [for port_map in var.port_mapper : port_map.port >= 30000 && port_map.port <= 32767]
|
||||||
|
# )
|
||||||
|
# error_message = "The range of valid ports is 30000-32767 for a NodePort type"
|
||||||
|
# }
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "target_host" {
|
variable "target_host" {
|
||||||
type = string
|
type = string
|
||||||
default = ""
|
default = ""
|
||||||
}
|
}
|
||||||
variable "node_ports" {
|
|
||||||
type = list(number)
|
|
||||||
default = [30080]
|
|
||||||
validation {
|
|
||||||
condition = alltrue([for port in var.node_ports : port >= 30000 && port <= 32767])
|
|
||||||
error_message = "The range of valid ports is 30000-32767"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
variable "lb_ports" {
|
|
||||||
type = list(object({
|
|
||||||
name = string
|
|
||||||
port = object({
|
|
||||||
number = number
|
|
||||||
})
|
|
||||||
}))
|
|
||||||
default = []
|
|
||||||
}
|
|
||||||
variable "lb_policy" {
|
variable "lb_policy" {
|
||||||
type = string
|
type = string
|
||||||
default = "Cluster"
|
default = "Cluster"
|
||||||
|
|||||||
Reference in New Issue
Block a user