How do I create a security rules with multiple protocols using Terraform in Azure?
My plan is to allow the protocols ICMP and TCP on the same security rule but I'm having problems related the "attribute value typ" My Terraform code: resource "azurerm_network_security_group" "example" { name = "01-tf-SG" location = azurerm_resource_group.main.location resource_group_name = azurerm_resource_group.main.name…