about summary refs log tree commit diff
path: root/users/wpcarro
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-04-15T17·59-0700
committerclbot <clbot@tvl.fyi>2022-04-15T18·02+0000
commita37584a562a4768d9f3c08fb69cb8d7b50b31094 (patch)
tree10608206cd2841092105b30442b91c73920a6de1 /users/wpcarro
parent2eaec323b049ee56a2c626ef6d4baf56d02ea673 (diff)
chore(wpcarro): Drop support for monsterpoker r/3952
This never really got off the ground...

Change-Id: I3e712174c83c74e78e2886ea80264652e36ea27a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5457
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro')
-rw-r--r--users/wpcarro/clients/monsterpoker/default.nix6
-rw-r--r--users/wpcarro/clients/monsterpoker/index.html24
-rw-r--r--users/wpcarro/nixos/diogenes/default.nix19
3 files changed, 0 insertions, 49 deletions
diff --git a/users/wpcarro/clients/monsterpoker/default.nix b/users/wpcarro/clients/monsterpoker/default.nix
deleted file mode 100644
index e5dca4bca2..0000000000
--- a/users/wpcarro/clients/monsterpoker/default.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{ depot, pkgs, ... }:
-
-pkgs.runCommandNoCC "monsterpoker.app" { } ''
-  mkdir -p $out
-  cp ${./index.html} $out/index.html
-''
diff --git a/users/wpcarro/clients/monsterpoker/index.html b/users/wpcarro/clients/monsterpoker/index.html
deleted file mode 100644
index 100108c3f2..0000000000
--- a/users/wpcarro/clients/monsterpoker/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <title>Buy Monster Poker</title>
-    <meta charset="UTF-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <script src="https://cdn.tailwindcss.com"></script>
-    <script>
-      tailwind.config = {
-        theme: {
-          extend: {},
-        },
-      };
-    </script>
-  </head>
-  <body class="bg-cyan-900 container mx-auto">
-    <h1 class="text-cyan-300 text-6xl text-center pt-10">
-      <a class="hover:underline"
-         href="https://monsterpoker.myshopify.com/products/monster-poker-republic">
-        Buy Monster Poker <b>today</b>!
-      </a>
-    </h1>
-  </body>
-</html>
diff --git a/users/wpcarro/nixos/diogenes/default.nix b/users/wpcarro/nixos/diogenes/default.nix
index f92de19d18..9f80d0b1ba 100644
--- a/users/wpcarro/nixos/diogenes/default.nix
+++ b/users/wpcarro/nixos/diogenes/default.nix
@@ -32,20 +32,6 @@ wpcarro.terraform.googleCloudVM {
         public_ptr_domain_name = "${domainName}.";
       };
     };
-
-    # monsterpoker.app
-    resource.google_dns_managed_zone."monsterpoker" = {
-      name = "monsterpoker";
-      dns_name = "monsterpoker.app.";
-    };
-
-    resource.google_dns_record_set."monsterpoker" = {
-      name = "monsterpoker.app.";
-      type = "A";
-      ttl = 300; # 5m
-      managed_zone = "\${google_dns_managed_zone.monsterpoker.name}";
-      rrdatas = [ "\${google_compute_instance.${name}.network_interface[0].access_config[0].nat_ip}" ];
-    };
   };
 
   configuration = {
@@ -165,11 +151,6 @@ wpcarro.terraform.googleCloudVM {
             enableACME = true;
             root = wpcarro.website.root;
           };
-          "monsterpoker.app" = {
-            addSSL = true;
-            enableACME = true;
-            root = wpcarro.clients.monsterpoker;
-          };
         };
       };
     };