/terraform-provider-stripe

Terraform Stripe provider (Fork of https://github.com/lukasaron/terraform-provider-stripe)

Primary LanguageGoMozilla Public License 2.0MPL-2.0

Please use https://github.com/lukasaron/terraform-provider-stripe

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.