Skip to content

martinhoefling/terraform-provider-hostingde

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform Provider for Hosting.de

Currently only supports maintaining DNS Zones and Records.

Build and Install

go build -o terraform-provider-hostingde
cp terraform-provider-hostingde ~/.terraform/plugins

Example TF File

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"
}

Releases

No releases published

Packages

No packages published

Languages