21 lines
407 B
HCL
21 lines
407 B
HCL
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
|
|
}
|