Currently only supports maintaining DNS Zones and Records.
go build -o terraform-provider-hostingde
cp terraform-provider-hostingde ~/.terraform/plugins
provider "hostingde" {}
resource "hostingde_zone" "sample" {
name = "sample.example.com"
}
resource "hostingde_record" "example" {
zone_id = hostingde_zone.sample.id
name = "test.sample.example.com"
type = "CNAME"
content = "www.example.com"
}