Disclaimer: This project is still in alpha with a version of 0.x.x. Please refer to the Go versioning guidelines for more information on versioning.
This project provides a Terraform provider for managing DeltaStream resources.
Getting started
Install the DeltaStream Terraform provider by adding a requirement and provider blocks:
terraform {
required_providers {
deltastream = {
source = "deltastreaminc/deltastream"
version = "~> 0.0.1"
}
}
}
provider "deltastream" {
auth_token = "your_auth_token_here"
organization = "your_organization_name_here"
role = "sysadmin"
}
For more information on provider configuration see the provider docs on the Terraform registry.