![Go Report Card](https://goreportcard.com/badge/github.com/propeldata/terraform-provider-propel)
The Propel provider is used to interact with Propel resources, including Data Sources, Data Pools and Metrics. The provider needs to be configured with the proper Application credentials (ID and secret) before it can be used.
📄 Check out the documentation.
🏗 Examples can be found in examples/.
❓ Questions? Feel free to create a new issue.
🔧 Want to contribute? Check out CONTRIBUTING.md.
Using the provider
terraform {
required_providers {
propel = {
source = "propeldata/propel"
version = "~> 0.1.0"
}
}
}
variable "propel_application_secret" {
type = string
sensitive = true
}
provider "propel" {
client_id = "APP00000000000000000000000000"
client_secret = var.propel_application_secret
}
Set your Propel Application's secret via the TF_VAR_propel_application_secret
environment variable.
License
This software is distributed under the terms of the MIT license. See LICENSE for detailst.