Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the failing tests TestAccBigQueryJob_bigqueryJobCopy* #10520

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions mmv1/templates/terraform/examples/bigquery_job_copy.tf.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
locals {
count = 2
}

resource "google_bigquery_table" "source" {
deletion_protection = false
count = length(google_bigquery_dataset.source)
count = local.count

dataset_id = google_bigquery_dataset.source[count.index].dataset_id
table_id = "<%= ctx[:vars]['job_id'] %>_${count.index}_table"
Expand All @@ -27,7 +31,7 @@ EOF
}

resource "google_bigquery_dataset" "source" {
count = 2
count = local.count

dataset_id = "<%= ctx[:vars]['job_id'] %>_${count.index}_dataset"
friendly_name = "test"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
locals {
count = 2
}

resource "google_bigquery_table" "source" {
deletion_protection = false
count = length(google_bigquery_dataset.source)
count = local.count

dataset_id = google_bigquery_dataset.source[count.index].dataset_id
table_id = "<%= ctx[:vars]['job_id'] %>_${count.index}_table"
Expand All @@ -24,10 +28,12 @@ resource "google_bigquery_table" "source" {
}
]
EOF

depends_on = [google_bigquery_dataset.source]
}

resource "google_bigquery_dataset" "source" {
count = 2
count = local.count

dataset_id = "<%= ctx[:vars]['job_id'] %>_${count.index}_dataset"
friendly_name = "test"
Expand Down
Loading