Skip to content

Commit e1ee5e1

Browse files
committed
chore: updated variable description
1 parent 599fbcd commit e1ee5e1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

modules/backend/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ variable "project_id" {
2626
}
2727

2828
variable "load_balancing_scheme" {
29-
description = "Load balancing scheme type (EXTERNAL for classic external load balancer, EXTERNAL_MANAGED for Envoy-based load balancer, and INTERNAL_SELF_MANAGED for traffic director)."
29+
description = "Load balancing scheme type (EXTERNAL for classic external load balancer, EXTERNAL_MANAGED for Envoy-based load balancer, and INTERNAL_MANAGED for internal load balancer)"
3030
type = string
3131
default = "EXTERNAL_MANAGED"
3232
}

modules/frontend/variables.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,13 @@ variable "labels" {
156156
}
157157

158158
variable "load_balancing_scheme" {
159-
description = "Load balancing scheme type (EXTERNAL for classic external load balancer, EXTERNAL_MANAGED for Envoy-based load balancer, and INTERNAL_SELF_MANAGED for traffic director)"
159+
description = "Load balancing scheme type (EXTERNAL for classic external load balancer, EXTERNAL_MANAGED for Envoy-based load balancer, and INTERNAL_MANAGED for internal load balancer)"
160160
type = string
161161
default = "EXTERNAL_MANAGED"
162162
}
163163

164164
variable "network" {
165-
description = "Network for INTERNAL_SELF_MANAGED/INTERNAL_MANAGED load balancing scheme"
165+
description = "Network for INTERNAL_MANAGED load balancing scheme"
166166
type = string
167167
default = "default"
168168
}
@@ -200,8 +200,9 @@ variable "http_keep_alive_timeout_sec" {
200200
}
201201

202202
variable "internal_forwarding_rules_config" {
203-
description = "List of internal managed forwarding rules config. One of 'address' or 'subnetwork' is required for each."
203+
description = "List of internal managed forwarding rules config. One of 'address' or 'subnetwork' is required for each. It is only applicable for internal load balancer"
204204
type = list(object({
205+
region = string
205206
address = optional(string)
206207
subnetwork = optional(string)
207208
}))

0 commit comments

Comments
 (0)