1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-27 07:46:05 +02:00
infrastructure/tf-stage2/versions.tf
Jelle van der Waa f741bc6a20
Terraform uptimerobot monitors
Add our uptimerobot to terraform so it's managed in code and we can
easily extend it. This currently only adds our to be monitored sites and
leaves the status page as is now.

Deleting resources on uptimerobot will cause terraform unable to run
see: https://github.com/louy/terraform-provider-uptimerobot/issues/82

References: #209
2021-05-18 22:51:16 +02:00

17 lines
300 B
HCL

terraform {
required_providers {
external = {
source = "hashicorp/external"
}
keycloak = {
source = "mrparkers/keycloak"
version = "2.0.0"
}
uptimerobot = {
source = "louy/uptimerobot"
version = "0.5.1"
}
}
required_version = ">= 0.13"
}