chore: use opentofu and replace restapi provider #4

Merged
xoxys merged 2 commits from use-tofu into main 2024-03-14 19:52:26 +00:00
3 changed files with 6 additions and 6 deletions
Showing only changes of commit 5d1e000642 - Show all commits

View File

@ -16,9 +16,9 @@ steps:
commands:
- tflint --color
- name: terraform
image: docker.io/jmccann/drone-terraform:8
- name: tofu
image: quay.io/thegeeklab/wp-opentofu
settings:
actions:
action:
- validate
tf_version: 1.5.0
tofu_version: 1.6.1

View File

@ -151,7 +151,7 @@ resource "restapi_object" "ucs_server" {
"name" : each.value.name,
"a" : [
hcloud_server.server[each.value.name].ipv4_address,
hcloud_server.server[each.value.name].ipv6_address,
try(each.value.ucs_ipv6_address, hcloud_server.server[each.value.name].ipv6_address),
],
}
})

View File

@ -7,7 +7,7 @@ terraform {
source = "hetznercloud/hcloud"
}
restapi = {
source = "Mastercard/restapi"
source = "thegeeklab/restapi"
}
}
}