nixos-config/infra/providers.tf

20 lines
416 B
Terraform
Raw Normal View History

2024-11-28 01:14:34 +08:00
terraform {
required_providers {
sops = {
source = "registry.terraform.io/carlpett/sops"
}
tls = {
source = "registry.terraform.io/hashicorp/tls"
}
2024-12-14 01:55:51 +08:00
random = {
source = "registry.terraform.io/hashicorp/random"
}
2024-12-01 16:16:09 +08:00
cloudflare = {
source = "registry.terraform.io/cloudflare/cloudflare"
}
2024-12-14 01:55:51 +08:00
b2 = {
source = "registry.terraform.io/backblaze/b2"
}
2024-11-28 01:14:34 +08:00
}
}