aboutsummaryrefslogtreecommitdiff
path: root/vps.tf
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-06 16:09:28 -0300
committerEuAndreh <eu@euandre.org>2020-08-06 16:09:28 -0300
commitd586d2907cefd64ddd99c6aaa5c6d5cba64da4e6 (patch)
tree0b0600aa285a39acf09dbce435f9d5bd23489166 /vps.tf
parentAlign Ansible with_items list (diff)
downloadserver-d586d2907cefd64ddd99c6aaa5c6d5cba64da4e6.tar.gz
server-d586d2907cefd64ddd99c6aaa5c6d5cba64da4e6.tar.xz
Remove gpodder.net sync software from the server
Diffstat (limited to 'vps.tf')
-rw-r--r--vps.tf12
1 files changed, 0 insertions, 12 deletions
diff --git a/vps.tf b/vps.tf
index c359e24..8579e76 100644
--- a/vps.tf
+++ b/vps.tf
@@ -15,11 +15,6 @@ variable "nextcloud_tld_prefix" {
description = "DNS prefix used for the Nextcloud installation. Does not contain a dot at the end."
}
-variable "gpodder_tld_prefix" {
- type = string
- description = "DNS prefix used for the gpodder.net installation. Does not contain a dot at the end."
-}
-
variable "hostname" {
type = string
description = "Human name of the host. This is a pet name, not cattle name :)"
@@ -117,10 +112,3 @@ resource "digitalocean_record" "nextcloud" {
name = var.nextcloud_tld_prefix
value = "${digitalocean_domain.vps_tld.name}."
}
-
-resource "digitalocean_record" "gpodder" {
- domain = digitalocean_domain.vps_tld.name
- type = "CNAME"
- name = var.gpodder_tld_prefix
- value = "${digitalocean_domain.vps_tld.name}."
-}