Skip to content

hazel-shen/terraform-provider-stripe

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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                = "hazel-shen/stripe"
      version               = "2.0.2"
    }
  }
}

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.