Categorygithub.com/harrisd19/terraform-provider-stripe
repositorypackage
1.3.5
Repository: https://github.com/harrisd19/terraform-provider-stripe.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

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.