summaryrefslogtreecommitdiff
path: root/infrastructure/app.tf
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2025-12-18 16:41:57 +0000
committerJoe Carstairs <me@joeac.net>2025-12-18 16:41:57 +0000
commitc9f7ad699cf9f0a64c4a3e48db1e130b279c77c3 (patch)
tree5b82b70e1c85b05ea2ba89fbbe578f6c65e928db /infrastructure/app.tf
parent20effac610f2956ac7f5caa55f9b595f1b3773b6 (diff)
infra is not on DigitalOcean
Diffstat (limited to 'infrastructure/app.tf')
-rw-r--r--infrastructure/app.tf53
1 files changed, 0 insertions, 53 deletions
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"
- }
- }
- }
-}