2020-01-12 19:32:14 +01:00
|
|
|
terraform {
|
|
|
|
backend "remote" {
|
|
|
|
organization = "nix-community"
|
|
|
|
workspaces { name = "nix-community" }
|
|
|
|
}
|
2021-08-18 13:05:59 +02:00
|
|
|
|
|
|
|
required_providers {
|
|
|
|
cloudflare = {
|
2022-11-16 08:31:16 +10:00
|
|
|
source = "cloudflare/cloudflare"
|
2021-08-18 13:05:59 +02:00
|
|
|
}
|
2022-05-12 00:07:07 +02:00
|
|
|
hydra = {
|
2022-11-16 08:31:16 +10:00
|
|
|
source = "DeterminateSystems/hydra"
|
2022-05-12 00:07:07 +02:00
|
|
|
}
|
2021-08-18 13:05:59 +02:00
|
|
|
}
|
2020-01-12 19:32:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
provider "cloudflare" {
|
|
|
|
account_id = "e4a2db52c495db230973c839a0699ae1"
|
|
|
|
}
|
2022-05-12 00:07:07 +02:00
|
|
|
|
|
|
|
provider "hydra" {
|
2022-11-16 08:31:16 +10:00
|
|
|
host = "https://hydra.nix-community.org"
|
2022-05-12 00:07:07 +02:00
|
|
|
username = "admin"
|
|
|
|
}
|