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.