You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to fetch information about an existing server, for example, by using the following query, the resulting objects do not contain information about the private networks.
data "hcloud_servers" "masters" {
with_selector = "role=master"
}
I think the issue is on this check, which apparently does not work when we're fetching the server information:
Also, the data schema does not contain a network field.
What did you expect to happen?
Be able to get the value of the private IP of a VM.
Please provide a minimal working example
data "hcloud_servers" "masters" {
with_selector = "role=master"
}
output "masters" {
value = data.hcloud_server.masters
}
What happened?
When trying to fetch information about an existing server, for example, by using the following query, the resulting objects do not contain information about the private networks.
I think the issue is on this check, which apparently does not work when we're fetching the server information:
Also, the data schema does not contain a network field.
What did you expect to happen?
Be able to get the value of the private IP of a VM.
Please provide a minimal working example
output is
The text was updated successfully, but these errors were encountered: