Terraform Provider
A Terraform provider for managing resources on your Cased account.
A Terraform provider for managing resources on your Cased account.
Currently, this provider supports:
- Managing workflows
- Managing webhooks
- 1.Clone the repository
- 2.Enter the repository directory
- 3.Build the provider using the Go
install
command:
$ go install
terraform {
required_providers {
cased = {
source = "cased/cased"
version = "0.0.1"
}
}
}
provider "cased" {
# Grab your Workflow API key from the API keys page:
# https://app.cased.com/settings/api-keys
workflows_api_key = ""
}
resource "cased_webhooks_endpoint" "webhook-endpoint" {
url = "https://app.cased.com/webhooks/endpoint"
// event_types is optional, subscribed to all event types of left blank
event_types = ["event.created"]
}
// The webhook secret is accessible so you can set environment variables
output "cased_webhooks_endpoint_secret" {
value = cased_webhooks_endpoint.webhook-endpoint.secret
}
resource "cased_workflow" "database-provisioning" {
name = "database-provisioning"
# At least one control is required: reason, authentication, or approval.
controls {
reason = true
authentication = true
approval {
# Optional: How many approvals are required to approve the workflow. (Default: 1)
count = 2
# Optional: Can the authenticated user self approve the request? (Default: false)
self_approval = false
# Optional: Restrict who can respond to the request
responders {
# User
responder {
name = "[email protected]"
}
# Someone from managers group must respond
responder {
name = "managers"
required = true
}
}
# Specify where the approval request will get delivered to.
sources {
# You must connect your Slack workspace with your Cased account on your
# integrations page: https://app.cased.com/settings/integrations
slack {
channel = "#cased-workflows"
}
}
}
}
}
If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above).
To compile the provider, run
go install
. This will build the provider and put the provider binary in the $GOPATH/bin
directory.To generate or update documentation, run
go generate
.Last modified 1yr ago