Skip to content

Commit 12f064c

Browse files
committed
fix: added default values for variables as per readme
1 parent 4549e4b commit 12f064c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,22 @@ variable "project_id" {
2020

2121
variable "backend_region_a" {
2222
type = string
23+
default = "us-east1"
2324
}
2425

2526
variable "backend_region_b" {
2627
type = string
28+
default = "us-south1"
2729
}
2830

2931
variable "subnet_region_a" {
3032
type = string
33+
default = "us-central1"
3134
}
3235

3336
variable "subnet_region_b" {
3437
type = string
38+
default = "us-west1"
3539
}
3640

3741

0 commit comments

Comments
 (0)