1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/tf-stage2/versions.tf
Levente Polyak d7734b22d1
terraform: update stage2 provider version declaration
In commit d31f8404c208c35abde2a3a801065b06844a058d we changed the
terraform provider for uptimerobot. Reflect this change in the terraform
lock file and provider version declaration.
2023-03-31 22:51:09 +02:00

15 lines
254 B
HCL

terraform {
required_providers {
external = {
source = "hashicorp/external"
}
keycloak = {
source = "mrparkers/keycloak"
}
uptimerobot = {
source = "vexxhost/uptimerobot"
}
}
required_version = ">= 0.13"
}