From 8ee70c33d8569e6b91773a643922a37505555cd4 Mon Sep 17 00:00:00 2001 From: Simone Rodigari Date: Thu, 6 Feb 2025 20:39:11 +0000 Subject: [PATCH] test(mc): Clean-up --- test/multicloud/modules/gke/variables.tf | 36 -------------------- test/multicloud/modules/grafana/variables.tf | 4 --- 2 files changed, 40 deletions(-) diff --git a/test/multicloud/modules/gke/variables.tf b/test/multicloud/modules/gke/variables.tf index 764743685b..41bf0a1a1f 100644 --- a/test/multicloud/modules/gke/variables.tf +++ b/test/multicloud/modules/gke/variables.tf @@ -23,39 +23,3 @@ variable "subnet_cidr" { type = string default = "10.0.0.0/24" } - -variable "inbound_protocol" { - description = "Protocol for inbound firewall rule" - type = string - default = "tcp" -} - -variable "inbound_ports" { - description = "Ports for inbound firewall rule" - type = list(string) - default = [] -} - -variable "inbound_source_ranges" { - description = "Source IP ranges for inbound firewall rule" - type = list(string) - default = [] -} - -variable "outbound_protocol" { - description = "Protocol for outbound firewall rule" - type = string - default = "tcp" -} - -variable "outbound_ports" { - description = "Ports for outbound firewall rule" - type = list(string) - default = [] -} - -variable "outbound_destination_ranges" { - description = "Destination IP ranges for outbound firewall rule" - type = list(string) - default = [] -} \ No newline at end of file diff --git a/test/multicloud/modules/grafana/variables.tf b/test/multicloud/modules/grafana/variables.tf index 18b84859f2..873c3124aa 100644 --- a/test/multicloud/modules/grafana/variables.tf +++ b/test/multicloud/modules/grafana/variables.tf @@ -1,8 +1,4 @@ variable "prometheus_endpoints" { description = "A map of Prometheus endpoints to add as data sources." type = map(string) - default = { - aks = "http://85.210.188.53:9090" - kind = "http://127.0.0.1:9090" - } }