franckverrot / terraform-provider-stripe

A Terraform Provider for Stripe
https://registry.terraform.io/providers/franckverrot/stripe/latest
Mozilla Public License 2.0
242 stars 51 forks source link

Resource : subscription #15

Closed mytototo closed 5 years ago

mytototo commented 5 years ago

Hi there,

First of all I would like to thank you for this provider. It's really useful.

How is it possible to add a customer and a subscription (a relation between a customer and a product) ? This is the only thing missing for me before starting using it.

Thanks.

clintonb-stripe commented 5 years ago

@mytototo this provider is intended to create the static parts of a subscription—the products and plans—that don't change very frequently. Individual subscription data does not apply here since they change on a frequent basis (e.g. monthly). Ideally, this data should be stored in your database.

mytototo commented 5 years ago

I understand, thanks for your feedback.