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
Which means that the azurerm_linux_virtual_machine are not connected to anything and will be removed on the first operation. They are not connected to anything as the "only" allowed connection is azurerm_virtual_network_peering and they do not know it. They know of azurerm_resource_group and azurerm_network_interface and those are not valid Nodes/Edges so are discarted.
The solution should be to add those resources as edges and the attributes needed on the Provider and fix the ResourceInOutNodes to know how to read those Edges.
The text was updated successfully, but these errors were encountered:
For Azure the
testdata/azure.tf
was added but no test using it.I tried to add the test but the current implementation does not work, some things I've found:
cfg["id"]
will never exists, what has to be done is (IIRC):And also the main issue is that on the HCL the graph build before doing any operation is:
Which means that the
azurerm_linux_virtual_machine
are not connected to anything and will be removed on the first operation. They are not connected to anything as the "only" allowed connection isazurerm_virtual_network_peering
and they do not know it. They know ofazurerm_resource_group
andazurerm_network_interface
and those are not valid Nodes/Edges so are discarted.The solution should be to add those resources as edges and the attributes needed on the Provider and fix the
ResourceInOutNodes
to know how to read those Edges.The text was updated successfully, but these errors were encountered: