From c9f7ad699cf9f0a64c4a3e48db1e130b279c77c3 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 18 Dec 2025 16:41:57 +0000 Subject: infra is not on DigitalOcean --- infrastructure/app.tf | 53 --------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 infrastructure/app.tf (limited to 'infrastructure/app.tf') diff --git a/infrastructure/app.tf b/infrastructure/app.tf deleted file mode 100644 index 24ec010..0000000 --- a/infrastructure/app.tf +++ /dev/null @@ -1,53 +0,0 @@ -resource "digitalocean_app" "joeac_net" { - project_id = "c106269c-1115-4682-8757-867368e057a4" - - spec { - name = "joeac-net" - region = local.region - domain { - name = local.domain - } - features = [ - "buildpack-stack=ubuntu-22" - ] - - alert { - disabled = false - rule = "DEPLOYMENT_FAILED" - } - - alert { - disabled = false - rule = "DOMAIN_FAILED" - } - - ingress { - rule { - component { - name = "personal-website" - preserve_path_prefix = false - } - - match { - path { - prefix = "/" - } - } - } - } - - static_site { - build_command = "npm run build" - environment_slug = "node-js" - name = "personal-website" - output_dir = "website/dist" - source_dir = "/" - - github { - branch = "main" - deploy_on_push = true - repo = "joeacarstairs/personal-website" - } - } - } -} -- cgit v1.2.3