0
0
llucycodes42
The code creates a security group named "acceptanceTestSecurityGroup1" in the resource group named "test". The group is located in the west US location.
Shortcut: tf_azurerm_network_security_group
resource "azurerm_network_security_group" "${MyResource}" {
name = "acceptanceTestSecurityGroup1"
resource_group_name = "\${azurerm_resource_group.test.name}"
location = "West US"
}