Skip to content

Commit

Permalink
fix: Add project id to the resource configuration (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
anakovt authored Jun 3, 2022
1 parent bf6d25b commit 0aada16
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/scheduled_queries/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ resource "google_project_iam_member" "bq_transfer_permission" {
resource "google_bigquery_data_transfer_config" "query_config" {
for_each = { for i in var.queries : i.name => i }

project = var.project_id
display_name = each.value.name
location = lookup(each.value, "location", null)
data_source_id = each.value.data_source_id
Expand Down

0 comments on commit 0aada16

Please sign in to comment.