Hi,
I would need to retrieve the public IP address of an (already existing) Virtual machine scale set.
I wanted to use the azurerm
provider like this:
data "azurerm_virtual_machine_scale_set" "my-resource" {
name = "my-resource-name"
resource_group_name = "my-resource-group-name"
}
Unfortunately, I’ve noticed virtual_machine_scale_set
is not supported in azurerm. Is that possible?
Would there be another way to retrieve the public IP address?
Jochen