infra/terraform/terraform_backend.tf
zimbatm c667deea19
terraform: remove main
A good main.tf acts as an entrypoint to a module and is typically used
when the module is smaller. For larger module it's best to split things
up and try to map the resources with the filename to make them easier to
find.
2023-01-25 09:58:14 +01:00

6 lines
116 B
HCL

terraform {
backend "remote" {
organization = "nix-community"
workspaces { name = "nix-community" }
}
}