Provision dokku server

This commit is contained in:
Jake Howard
2021-06-20 12:01:20 +01:00
parent b20ffb27c4
commit e3502ae1e0
8 changed files with 75 additions and 0 deletions

View File

@ -164,3 +164,19 @@ resource "cloudflare_record" "theorangeonenet_privatebin" {
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_dokku" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "d"
value = vultr_instance.grimes.main_ip
type = "A"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_dokku_wildcard" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "*.d"
value = vultr_instance.grimes.main_ip
type = "A"
ttl = 1
}