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.
This commit is contained in:
zimbatm 2023-01-25 09:58:13 +01:00
parent 641702a577
commit c667deea19
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
2 changed files with 6 additions and 5 deletions

View file

@ -0,0 +1,6 @@
terraform {
backend "remote" {
organization = "nix-community"
workspaces { name = "nix-community" }
}
}

View file

@ -1,9 +1,4 @@
terraform {
backend "remote" {
organization = "nix-community"
workspaces { name = "nix-community" }
}
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"