Terraform Provider Reference
Sym's Terraform Provider allows you to declaratively provision Flows
. It also provides several types of resources that can be used to configure Flows
.
Setup
Before using the provider, you need to import it.
terraform {
required_version = ">= 0.14"
required_providers {
sym = {
source = "terraform.symops.com/symopsio/sym"
version = "0.4.0"
}
}
}
You also need to initialize it with your organization slug.
provider "sym" {
org = "healthy-health"
}
You can run
symflow status
to get your slug!
Updated 5 months ago
Did this page help you?