[RFC] Stripe #61
fredericbarthelet
started this conversation in
Provider
Replies: 1 comment 1 reply
-
The Stripe docs mention the possibility to use environment variables for API keys: https://stripe.com/docs/cli/api_keys
I'm guessing this is useful for CI environments. It might be worth supporting too here? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The aims of this RFC is to discuss the API, implementation and features offered through the creation of a new Stripe provider and its set of Constructs.
Stripe aims at integrating payment solution like a breeze. Developing a Stripe provider aims at automating and easily reproduce Stripe account provisioning and modification
Current conditions
Stripe develops and maintains a CLI tool. This CLI tools allows simple operation from your terminal using profiles. Those profiles' configuration is stored in
~/.config/stripe/config.toml
. Each profile contains 2 pairs of public/secret keys (one for test and one for live), as well as a Stripe account ID -acct_xxxxxxxxxxx
- and a device name.When provisioning a profile on your machine using
stripe login
interactive command, a user manual confirmation is requested and a limited key is created with a validity period of 90 days.Beta Was this translation helpful? Give feedback.
All reactions