diff options
Diffstat (limited to 'vps.tf')
-rw-r--r-- | vps.tf | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -10,11 +10,6 @@ variable "tld" { description = "Root Top-Level Domain. Subdomains will be derived from it." } -variable "wallabag_tld_prefix" { - type = string - description = "DNS prefix used for the Wallabag installation. Does not contain a dot at the end." -} - variable "nextcloud_tld_prefix" { type = string description = "DNS prefix used for the Nextcloud installation. Does not contain a dot at the end." @@ -111,13 +106,6 @@ resource "digitalocean_record" "at_sign" { value = digitalocean_floating_ip.vps_public_ip.ip_address } -resource "digitalocean_record" "wallabag" { - domain = digitalocean_domain.vps_tld.name - type = "CNAME" - name = var.wallabag_tld_prefix - value = "${digitalocean_domain.vps_tld.name}." -} - resource "digitalocean_record" "nextcloud" { domain = digitalocean_domain.vps_tld.name type = "CNAME" |