Robert Kaussow
810cf272b8
All checks were successful
continuous-integration/drone/push Build is passing
20 lines
418 B
HCL
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"
|
|
}
|
|
}
|