Categorygithub.com/propeldata/terraform-provider-propel
repositorypackage
1.3.4
Repository: https://github.com/propeldata/terraform-provider-propel.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Propel Terraform Provider

Terraform Registry Go Report Card

The Propel Serverless ClickHouse provider interacts with Propel resources, including Data Sources, Data Pools, and Metrics. You need to configure the provider with the proper Application credentials (ID and secret) to get started.

šŸ“„ 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 = "~> 1.3.4"
    }
  }
}

variable "propel_application_secret" {
  type = string
  sensitive = true
}

provider "propel" {
  client_id = "APP00000000000000000000000000"
  client_secret = var.propel_application_secret
}

We recommend you 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 details.