Open
Description
What happened?
When I use the hcloud_load_balancer
datasource the service
list is set to null
even though there are two services (shown on web interface & hcloud cli).
The other properties (like target
) are set properly.
What did you expect to happen?
To see the two Load Balancer services in data.hcloud_load_balancer.<name>.service
Please provide a minimal working example
data "hcloud_load_balancer" "lb" {
name = "myloadbalancer"
}
output "hcloud_load_balancer" {
value = data.hcloud_load_balancer.lb
}