Merge pull request #1343 from apichick/bigquery-analytics-fix

Fix because of changes in the cloud functions module and the Apigee a…
This commit is contained in:
Julio Castillo 2023-04-27 14:53:50 +02:00 committed by GitHub
commit 99c8846c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 6 deletions

View File

@ -443,5 +443,15 @@
"mode": "NULLABLE",
"name": "x_apigee_mintng_price_multiplier",
"type": "NUMERIC"
},
{
"mode": "NULLABLE",
"name": "sense_flag_headers",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "sense_action_id",
"type": "STRING"
}
]

View File

@ -182,9 +182,11 @@ module "function_export" {
DATASTORE = var.datastore_name
}
trigger_config = {
event = "google.pubsub.topic.publish"
resource = module.pubsub_export.id
retry = null
v1 = {
event = "google.pubsub.topic.publish"
resource = module.pubsub_export.id
retry = null
}
}
service_account_create = true
}
@ -218,9 +220,11 @@ module "function_gcs2bq" {
LOCATION = var.organization.analytics_region
}
trigger_config = {
event = "google.pubsub.topic.publish"
resource = module.bucket_export.topic
retry = null
v1 = {
event = "google.pubsub.topic.publish"
resource = module.bucket_export.topic
retry = null
}
}
service_account_create = true
}