diff --git a/ansible/inventory/hosts.yml b/ansible/inventory/hosts.yml index e373cf8..2b7252e 100644 --- a/ansible/inventory/hosts.yml +++ b/ansible/inventory/hosts.yml @@ -28,3 +28,13 @@ all: hosts: halo.awful.club: ansible_python_interpreter: python3 + bikeshed: + hosts: + seraph: + ansible_python_interpreter: /usr/bin/python3 + demiurge: + ansible_python_interpreter: /usr/bin/python3 + exgod: + ansible_python_interpreter: /usr/bin/python3 + vars: + ansible_user: root diff --git a/terraform/do_domains/records_home.jowj.net.tf b/terraform/do_domains/records_home.jowj.net.tf index ea0de5a..e4e1b65 100644 --- a/terraform/do_domains/records_home.jowj.net.tf +++ b/terraform/do_domains/records_home.jowj.net.tf @@ -177,3 +177,39 @@ resource "digitalocean_record" "tfer--87843681" { value = "192.168.1.211" weight = "0" } + +resource "digitalocean_record" seraph-dns { + domain = "home.jowj.net" + flags = "0" + name = "seraph" + port = "0" + priority = "0" + ttl = "900" + type = "A" + value = "100.68.110.113" + weight = "0" +} + +resource "digitalocean_record" exgod-dns { + domain = "home.jowj.net" + flags = "0" + name = "exgod" + port = "0" + priority = "0" + ttl = "900" + type = "A" + value = "100.98.219.88" + weight = "0" +} + +resource "digitalocean_record" demiurge-dns { + domain = "home.jowj.net" + flags = "0" + name = "demiurge" + port = "0" + priority = "0" + ttl = "900" + type = "A" + value = "100.108.60.46" + weight = "0" +}