infra/terraform/main.tf
2023-01-22 11:54:36 +01:00

27 lines
486 B
HCL

terraform {
backend "remote" {
organization = "nix-community"
workspaces { name = "nix-community" }
}
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
}
hydra = {
source = "DeterminateSystems/hydra"
}
tfe = {
source = "hashicorp/tfe"
}
}
}
provider "cloudflare" {
account_id = "e4a2db52c495db230973c839a0699ae1"
}
provider "hydra" {
host = "https://hydra.nix-community.org"
username = "admin"
}