summaryrefslogtreecommitdiff
path: root/terranix/cloudflare/pages_projects.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-01-31 08:14:23 -0500
committerSeth Flynn <[email protected]>2025-02-03 05:34:09 -0500
commit082ef6167ea188de4a0439fe63baaca41b19b45b (patch)
treec51217b3b47601ee95cacfeaeaef426fb7128a6d /terranix/cloudflare/pages_projects.nix
parentd5ad065e31f4d84824463829eeabfb55dbe9ece4 (diff)
terraform: switch to plain hcl
• Removed input 'terranix' • Removed input 'terranix/bats-assert' • Removed input 'terranix/bats-support' • Removed input 'terranix/flake-parts' • Removed input 'terranix/nixpkgs' • Removed input 'terranix/systems' • Removed input 'terranix/terranix-examples'
Diffstat (limited to 'terranix/cloudflare/pages_projects.nix')
-rw-r--r--terranix/cloudflare/pages_projects.nix60
1 files changed, 0 insertions, 60 deletions
diff --git a/terranix/cloudflare/pages_projects.nix b/terranix/cloudflare/pages_projects.nix
deleted file mode 100644
index 4c0b076..0000000
--- a/terranix/cloudflare/pages_projects.nix
+++ /dev/null
@@ -1,60 +0,0 @@
-{ lib, ... }:
-let
- getGitHubRepo =
- { owner, repo_name }:
- {
- type = "github";
- config = {
- inherit owner repo_name;
- production_branch = "main";
- };
- };
-in
-{
- resource.cloudflare_pages_project = {
- personal_website = {
- account_id = lib.tfRef "var.account_id";
- name = "getchoo-website";
- production_branch = "main";
-
- source = getGitHubRepo {
- owner = "getchoo";
- repo_name = "website";
- };
-
- build_config = {
- build_caching = true;
- build_command = "./build-site.sh";
- destination_dir = "/dist";
- };
-
- deployment_configs =
- let
- environment_variables = {
- ZOLA_VERSION = "0.19.2";
- };
- in
- {
- production = [ { inherit environment_variables; } ];
- preview = [ { inherit environment_variables; } ];
- };
- };
-
- teawie_api = {
- account_id = lib.tfRef "var.account_id";
- name = "teawie-api";
- production_branch = "main";
-
- source = getGitHubRepo {
- owner = "getchoo";
- repo_name = "teawieAPI";
- };
-
- build_config = {
- build_caching = true;
- build_command = "pnpm run lint && pnpm run build";
- destination_dir = "/dist";
- };
- };
- };
-}