Fix linter, improve rabbit

This commit is contained in:
2024-06-23 18:37:30 +02:00
parent 9f12af60bc
commit 5299267f47
13 changed files with 100 additions and 31 deletions

View File

@@ -8,7 +8,13 @@ variable "namespace" {
type = string
}
variable "labels" {
type = map(string)
type = map(string)
description = "Service labels"
}
variable "selector" {
type = map(string)
description = "Service selector labels (default same as labels)"
default = {}
}
variable "annotations" {
type = map(string)
@@ -33,6 +39,7 @@ variable "ip_family" {
}
variable "port_mapper" {
description = "List information for port mapping in the service"
type = list(object({
name = optional(string)
port = number