Maintained by @goci-io/prp-terraform
For the latest version you can check the releases page.
module "pricing_plans" {
source = "git::https://github.com/goci-io/stripe-pricing-plans.git?ref=tags/<latest-version>"
name = "my-project"
api_token = "stripe API token"
webhook_endpoint = "https://notify.me.on.charge.events.com"
pricing_plans = [
{
name = "Starter"
amount = 999 # 9.99
currency = "EUR"
interval = "month"
}
]
}