0
0
llucycodes42
This code creates a new service bus topic called "testTopic" in the "test" namespace and located in the West US region.
Shortcut: tf_azurerm_servicebus_topic
resource "azurerm_servicebus_topic" "${MyResource}" {
name = "testTopic"
resource_group_name = "\${azurerm_resource_group.test.name}"
namespace_name = "\${azurerm_servicebus_namespace.test.name}"
location = "West US"
enable_partitioning = true
}