Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8ee70c3

Browse files
committedFeb 6, 2025··
test(mc): Clean-up
1 parent 25b31fb commit 8ee70c3

File tree

2 files changed

+0
-40
lines changed

2 files changed

+0
-40
lines changed
 

‎test/multicloud/modules/gke/variables.tf

-36
Original file line numberDiff line numberDiff line change
@@ -23,39 +23,3 @@ variable "subnet_cidr" {
2323
type = string
2424
default = "10.0.0.0/24"
2525
}
26-
27-
variable "inbound_protocol" {
28-
description = "Protocol for inbound firewall rule"
29-
type = string
30-
default = "tcp"
31-
}
32-
33-
variable "inbound_ports" {
34-
description = "Ports for inbound firewall rule"
35-
type = list(string)
36-
default = []
37-
}
38-
39-
variable "inbound_source_ranges" {
40-
description = "Source IP ranges for inbound firewall rule"
41-
type = list(string)
42-
default = []
43-
}
44-
45-
variable "outbound_protocol" {
46-
description = "Protocol for outbound firewall rule"
47-
type = string
48-
default = "tcp"
49-
}
50-
51-
variable "outbound_ports" {
52-
description = "Ports for outbound firewall rule"
53-
type = list(string)
54-
default = []
55-
}
56-
57-
variable "outbound_destination_ranges" {
58-
description = "Destination IP ranges for outbound firewall rule"
59-
type = list(string)
60-
default = []
61-
}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
variable "prometheus_endpoints" {
22
description = "A map of Prometheus endpoints to add as data sources."
33
type = map(string)
4-
default = {
5-
aks = "http://85.210.188.53:9090"
6-
kind = "http://127.0.0.1:9090"
7-
}
84
}

0 commit comments

Comments
 (0)
Please sign in to comment.