-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Add BigQuery push subscriptions for Google Pub/Sub #12199
Add BigQuery push subscriptions for Google Pub/Sub #12199
Comments
looking into this |
I can see this is merged however with the latest release (that I can see it is included in) I am still getting:
Terraform config is: resource "google_pubsub_subscription" "data-sub-bq" {
provider = google-beta
name = "data-${var.stage}-sub-bq"
topic = google_pubsub_topic.data.name
ack_deadline_seconds = 20
bigquery_config {
table = "${var.gcp_project_id}:${var.bq_dataset}.${var.bq_table}"
}
dead_letter_policy {
dead_letter_topic = google_pubsub_topic.data_dead_letter.id
max_delivery_attempts = 10
}
} Provider: terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.28.0"
}
google = {
source = "hashicorp/google"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.31.0"
} |
@voycey This PR was merged on 1st August at 17:07 CEST, while the |
I checked the commits and could see the modified code in there but maybe there wasnt the magic module release in time :( |
@voycey Also you can find the docs now in the Terraform Registry documentation -> https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/pubsub_subscription#example-usage---pubsub-subscription-push-bq |
Great thanks 🙏 |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Description
Google recently added "BigQuery push" subscription delivery types for Pub/Sub.
https://cloud.google.com/pubsub/docs/bigquery
New or Affected Resource(s)
google_pubsub_subscription
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: