terraform-provider-stripe
terraform-provider-stripe copied to clipboard
Account resource
Hi,
I'd like to configure my stripe account settings (mostly the "Branding" and similar settings) via TF. Is it possible to add it as a resource?
I realize it might be complex due to the "Connect" feature but I'd be happy to start looking into it myself.
Cheers
Hi @byted ,
Thank You for using the Stripe provider!
I believe it's all about resources under the Connect section in the API:
- Accounts: https://docs.stripe.com/api/accounts
- Login Link: https://docs.stripe.com/api/accounts/login_link
- Account Links: https://docs.stripe.com/api/account_links
- Account Sessions: https://docs.stripe.com/api/account_sessions
- Application Fees: https://docs.stripe.com/api/application_fees
- Application Fee Refunds: https://docs.stripe.com/api/fee_refunds
- Capabilities: https://docs.stripe.com/api/capabilities
- Country Specs: https://docs.stripe.com/api/country_specs
- External Bank Accounts: https://docs.stripe.com/api/external_accounts
- External Account Cards: https://docs.stripe.com/api/external_account_cards
- Persons: https://docs.stripe.com/api/persons
- Topups: https://docs.stripe.com/api/topups
- Transfers: https://docs.stripe.com/api/transfers
- Transfer Reversals: https://docs.stripe.com/api/transfer_reversals
- Secret Management: https://docs.stripe.com/api/secret_management
Could you please select which of these you need? I'll add them to the priority list.
Best, Lukas
Hey, thanks for the quick response. For me only api/accounts is important right now.
Cheers