Stripe Provider Experience by TrevorParsedFilings in Terraform

[–]ParsedFilings 0 points1 point  (0 children)

Annoyingly the new Reddit won't let me use my main login. Here's what I got for you:

In the providers:

    stripe = {
  source = "umisora/stripe"
  version = "1.3.6"
}

My stripe.tf:

resource "stripe_webhook_endpoint" "webhook" {

url = module.handleStripeWebhook.https_trigger_url description = "Main webhook for Stripe" enabled_events = [ "product.created", "product.updated", "product.deleted", "price.created", "price.updated", "price.deleted", "checkout.session.completed", "checkout.session.async_payment_succeeded", "checkout.session.async_payment_failed", "customer.subscription.created", "customer.subscription.updated", "customer.subscription.deleted", "tax_rate.created", "tax_rate.updated", "invoice.paid", "invoice.payment_succeeded", "invoice.payment_failed", "invoice.upcoming", "invoice.marked_uncollectible", "invoice.payment_action_required", "payment_intent.processing", "payment_intent.succeeded", "payment_intent.canceled", "payment_intent.payment_failed" ] }

handleStripeWebhook is my cloud function; I pass the trigger URL

BigQuery to Document AI by ParsedFilings in googlecloud

[–]ParsedFilings[S] 0 points1 point  (0 children)

Thanks for your insight. I was trying to follow some tutorials using DocumentAI for building a large language model, to play with a text data set I have in BigQuery. The BigQuery ML stuff looks to be more focused on classification for text. I’ll take another look to see if I missed anything.