diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-30T19·27-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-01-08T05·33+0000 |
commit | 44f20ea8108c82eef254c5e031f59bbc21cf2992 (patch) | |
tree | 97c9ff1b642dbeee5665570296077aa7cc6ced4e | |
parent | d6725296cac5ddb29d734ca4db8c01ee260ea471 (diff) |
feat(wpcarro/diogenes): Support PTR record configuration r/3537
This support reverse-DNS lookups. I encountered a problem where I accidentally deleted my instance's `nat_ip` (external, ephemeral IP). I needed to run... ```shell terraform apply -replace=google_compute_instance.diogenes ``` ...which invalidates terraform's local cache of the state. I believe this used to be called `terraform taint`. Things are mostly WAI, with one known issue: quasselcore and billandhiscomputer.com complain about missing SSL certs, but I believe this is a race-condition. Calling... ```shell systemctl restart quassel.service ``` ...resolves the issue for quassel. Unfortunately the same doesn't work for nginx.service, but after a bit of time https://billandhiscomputer.com "just works". Clearly I'm not sure what's going on here. At least not yet... Change-Id: I9f059655cb6e83d56618b77cfe4ed38283614ef6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4753 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
-rw-r--r-- | users/wpcarro/nixos/diogenes/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/wpcarro/nixos/diogenes/default.nix b/users/wpcarro/nixos/diogenes/default.nix index b253dd3a24ad..b5fa822b7269 100644 --- a/users/wpcarro/nixos/diogenes/default.nix +++ b/users/wpcarro/nixos/diogenes/default.nix @@ -24,6 +24,12 @@ in wpcarro.terraform.googleCloudVM { managed_zone = "\${google_dns_managed_zone.${name}.name}"; rrdatas = ["\${google_compute_instance.${name}.network_interface[0].access_config[0].nat_ip}"]; }; + + resource.google_compute_instance."${name}" = { + network_interface.access_config = { + public_ptr_domain_name = domainName; + }; + }; }; configuration = { |