Skip to content

Commit

Permalink
fix: remove space from cidr list (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev authored Oct 3, 2024
1 parent 594136a commit 1fff108
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions terraform/gitops/pm4ml/pm4ml.tf
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ variable "opentelemetry_enabled" {
type = bool
description = "bool that enables opentelemetry in cluster"
default = false
}
}

variable "opentelemetry_namespace_filtering_enable" {
type = bool
Expand All @@ -288,5 +288,5 @@ variable "mcm_admin_secret_prefix" {
}

locals {
nat_cidr_list = join(", ", [for ip in var.nat_public_ips : format("%s/32", ip)])
nat_cidr_list = join(",", [for ip in var.nat_public_ips : format("%s/32", ip)])
}
2 changes: 1 addition & 1 deletion terraform/gitops/proxy-pm4ml/pm4ml.tf
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,5 @@ variable "pm4ml_external_switch_b_client_secret" {
}

locals {
nat_cidr_list = join(", ", [for ip in var.nat_public_ips : format("%s/32", ip)])
nat_cidr_list = join(",", [for ip in var.nat_public_ips : format("%s/32", ip)])
}

0 comments on commit 1fff108

Please sign in to comment.