Skip to content

Commit b737455

Browse files
committed
fix: removed redundant compression_mode argument
1 parent 44a03f6 commit b737455

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

examples/internal-lb-cloud-run/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ module "internal-lb-http-backend" {
103103
enable_cdn = false
104104
load_balancing_scheme = "INTERNAL_MANAGED"
105105
locality_lb_policy = "RANDOM"
106-
compression_mode = "DISABLED"
107106
serverless_neg_backends = [
108107
{ region : var.backend_region_a, type : "cloud-run", service_name : module.backend-service-region-a.service_name },
109108
{ region : var.backend_region_b, type : "cloud-run", service_name : module.backend-service-region-b.service_name }

examples/internal-lb-cloud-run/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ variable "project_id" {
1919
}
2020

2121
variable "backend_region_a" {
22-
type = string
22+
type = string
2323
default = "us-east1"
2424
}
2525

2626
variable "backend_region_b" {
27-
type = string
27+
type = string
2828
default = "us-south1"
2929
}
3030

3131
variable "subnet_region_a" {
32-
type = string
32+
type = string
3333
default = "us-central1"
3434
}
3535

3636
variable "subnet_region_b" {
37-
type = string
37+
type = string
3838
default = "us-west1"
3939
}
4040

0 commit comments

Comments
 (0)