Provision privatebin

This commit is contained in:
Jake Howard
2021-02-12 23:32:31 +00:00
parent 47df8164fa
commit 3014e5d052
5 changed files with 45 additions and 0 deletions

View File

@ -164,3 +164,11 @@ resource "cloudflare_record" "theorangeonenet_notes" {
type = "CNAME"
ttl = 1
}
resource "cloudflare_record" "theorangeonenet_privatebin" {
zone_id = cloudflare_zone.theorangeonenet.id
name = "bin"
value = vultr_server.casey.main_ip
type = "A"
ttl = 1
}