# What this PR does Removes unnecessary team checks enforced by public API, as they seem to be outdated and not aligned with the web UI and docs. From public [docs](https://grafana.com/docs/oncall/latest/user-and-team-management/#manage-teams-in-grafana-oncall): > Resources from different teams can be connected with one another. For instance, you can create an integration in one team, set up multiple routes for the integration, and utilize escalation chains from other teams. Users, schedules, and outgoing webhooks from other teams can also be included in the escalation chain. ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
2.6 KiB
Grafana OnCall Terraform Plugin
Use the Grafana Terraform provider to manage OnCall resources, such as schedules, escalation chains and more within your “as-code” workflow.
To learn more:
- read our Get started with Grafana OnCall and Terraform blog post
- refer to the Terraform provider documentation
- check out the Terraform provider source code
How to build OnCall Terraform plugin locally (developer notes)
Refer to Terraform provider README.md for more details.
-
Clone Grafana OnCall Go Client repo and make local changes
-
Clone Grafana Terraform plugin repo, check Readme and make local changes
-
Set env variables
Warning: you might want to set another OS_ARCH, provided value are for Apple Silicon
export BINARY=terraform-provider-grafana OS_ARCH=darwin_arm64 HOSTNAME=grafana.com NAMESPACE=raintank NAME=grafana VERSION=1.0.0 -
Build provider
go build -o ${BINARY} -
If there are changes to
grafana/amixr-api-go-client/make sure to replace it in provider's go.mod:Warning: this command is example, name or version of api client might and will change, check provider's go.mod
// TODO: remove this after testing replace github.com/grafana/amixr-api-go-client v0.0.8 => /YOUR_LOCAL_PATH/amixr-api-go-client -
Create a
.terraformrcin$HOMEdirectory and paste the followingprovider_installation { dev_overrides { "grafana/grafana" = "/path/to/your/grafana/terraform-provider" # this path is the directory where the binary is built } } -
Create a new directory and a
main.tffile with the following content:terraform { required_providers { grafana = { source = "grafana/grafana" version = "1.0.0" } } } provider "grafana" { alias = "oncall" oncall_access_token = oncall_url = } -
Run the following commands to initialize Terraform and apply the configuration:
terrafrom init terraform plan/apply