hcloud-server-tf/providers.tf
Robert Kaussow 810cf272b8
All checks were successful
continuous-integration/drone/push Build is passing
feat: add option to set univention dns records
2022-09-03 23:12:06 +02:00

20 lines
418 B
HCL

provider "hcloud" {
token = var.hcloud_token
}
provider "cloudflare" {
api_token = var.cloudflare_api_token
}
provider "restapi" {
uri = var.ucs_api_url
username = var.ucs_api_username
password = var.ucs_api_password
id_attribute = "dn"
debug = true
create_returns_object = true
headers = {
accept = "application/json"
}
}