Skip to content

Commit

Permalink
fix: update project id for network and project
Browse files Browse the repository at this point in the history
  • Loading branch information
ericyz committed Dec 30, 2022
1 parent 5f5f36c commit 2c8d2db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/simple_regional_with_gateway_api/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
module "example" {
source = "../../../examples/simple_regional_with_gateway_api"

project_id = var.project_ids[2]
project_id = var.project_ids[1]
cluster_name_suffix = "-${random_string.suffix.result}"
region = var.region
network = google_compute_network.main.name
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/simple_regional_with_gateway_api/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "random_string" "suffix" {
}

provider "google" {
project = var.project_ids[0]
project = var.project_ids[1]
}

resource "google_compute_network" "main" {
Expand Down

0 comments on commit 2c8d2db

Please sign in to comment.