Skip to content

Commit 2c8d2db

Browse files
committed
fix: update project id for network and project
1 parent 5f5f36c commit 2c8d2db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: test/fixtures/simple_regional_with_gateway_api/example.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
module "example" {
1818
source = "../../../examples/simple_regional_with_gateway_api"
1919

20-
project_id = var.project_ids[2]
20+
project_id = var.project_ids[1]
2121
cluster_name_suffix = "-${random_string.suffix.result}"
2222
region = var.region
2323
network = google_compute_network.main.name

Diff for: test/fixtures/simple_regional_with_gateway_api/network.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "random_string" "suffix" {
2121
}
2222

2323
provider "google" {
24-
project = var.project_ids[0]
24+
project = var.project_ids[1]
2525
}
2626

2727
resource "google_compute_network" "main" {

0 commit comments

Comments
 (0)