mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2026-09-07 04:34:25 +02:00
Besides getting nearly two years[2] of fixes and features, it also supports declaratively defining priorities of executions and subflows inside of a flow[3], which we want to use. [1] https://www.keycloak.org/2024/12/terraform-provider-adoption.html [2] 4.4.0 is from 2024-01-09 and 5.6.0 isfrom 2025-12-23 [3] https://github.com/keycloak/terraform-provider-keycloak/pull/1040
18 lines
305 B
Terraform
18 lines
305 B
Terraform
terraform {
|
|
required_providers {
|
|
external = {
|
|
source = "hashicorp/external"
|
|
}
|
|
keycloak = {
|
|
source = "keycloak/keycloak"
|
|
}
|
|
uptimerobot = {
|
|
source = "vexxhost/uptimerobot"
|
|
}
|
|
fastly = {
|
|
source = "fastly/fastly"
|
|
}
|
|
}
|
|
required_version = ">= 0.13"
|
|
}
|