feat: add dns management

This commit is contained in:
Julian Tölle 2023-02-25 23:22:13 +01:00
parent 6ea9911f29
commit d097de521b
4 changed files with 163 additions and 3 deletions

8
provider_hetznerdns.tf Normal file
View file

@ -0,0 +1,8 @@
# Set the variable value in *.tfvars file
# or using -var="hetzner_dns_token=..." CLI option
variable "hetzner_dns_token" {}
# Configure the Hetzner DNS Provider
provider "hetznerdns" {
apitoken = var.hetzner_dns_token
}