From eb4c8839f47365a74bea7c781a5f7cb80a059f5f Mon Sep 17 00:00:00 2001 From: Angel Marin Date: Tue, 13 Jan 2026 08:19:22 +0100 Subject: [PATCH] HYPERFLEET-506 - fix: Remove unused variable --- terraform/main.tf | 1 - terraform/modules/pubsub/variables.tf | 5 ----- 2 files changed, 6 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index f762a6b..a63ed1f 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -56,7 +56,6 @@ module "pubsub" { project_id = var.gcp_project_id kubernetes_namespace = local.kubernetes_namespace - developer_name = var.developer_name # Topic configurations with subscriptions and publishers topic_configs = var.pubsub_topic_configs diff --git a/terraform/modules/pubsub/variables.tf b/terraform/modules/pubsub/variables.tf index 3278a02..53b8351 100644 --- a/terraform/modules/pubsub/variables.tf +++ b/terraform/modules/pubsub/variables.tf @@ -9,11 +9,6 @@ variable "kubernetes_namespace" { default = "hyperfleet-system" } -variable "developer_name" { - description = "Developer name to include in resource names for uniqueness" - type = string -} - variable "topic_configs" { description = <<-EOT Map of Pub/Sub topic configurations. Each topic can have its own set of subscriptions and publishers.