nixos-config/infra/providers.tf

23 lines
487 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-12-15 16:23:50 +08:00
vultr = {
source = "registry.terraform.io/vultr/vultr"
}
2024-11-28 01:14:34 +08:00
}
}