Skip to content

Commit bf90265

Browse files
committed
fix: more hcloud_server deprecation warnings
1 parent dfd124f commit bf90265

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

main-setup.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ locals {
1414
module "registry_control" {
1515
source = "./k3s_registry"
1616

17-
server = hcloud_server.control
17+
server = {
18+
id = hcloud_server.control.id
19+
ipv4_address = hcloud_server.control.ipv4_address
20+
}
1821
private_key = tls_private_key.ssh.private_key_openssh
1922
}
2023

0 commit comments

Comments
 (0)