os/terraform/mezza.biz.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
407 B
Terraform
Raw Normal View History

2024-03-19 20:00:28 +00:00
resource "hostingde_zone" "mezza" {
name = "mezza.biz"
type = "NATIVE"
}
resource "hostingde_record" "mezza-web" {
zone_id = hostingde_zone.mezza.id
name = "mezza.biz"
type = "CNAME"
content = "frikandel.b12f.io"
ttl = 300
}
resource "hostingde_record" "mezza-www" {
zone_id = hostingde_zone.mezza.id
name = "www.mezza.biz"
type = "CNAME"
content = "frikandel.b12f.io"
ttl = 300
}