lukasaron / terraform-provider-stripe

Terraform Stripe Provider
https://registry.terraform.io/providers/lukasaron/stripe/latest
Mozilla Public License 2.0
54 stars 24 forks source link
go golang hcl stripe stripe-api terraform terraform-provider terraform-stripe terraform-stripe-provider

Stripe Terraform Provider

The Stripe Terraform provider uses the official Stripe SDK based on Golang. On top of that, the provider is developed around the official Stripe API documentation website.

The Stripe Terraform Provider documentation can be found on the Terraform Provider documentation website.

Usage:

terraform {
  required_providers {
    stripe = {
      source = "lukasaron/stripe"
    }
  }
}

provider "stripe" {
  api_key="<api_secret_key>"
}

Environmental variable support

The parameter api_key can be omitted when the STRIPE_API_KEY environmental variable is present.


Local Debugging