Closed hknutsen closed 2 months ago
service-bus
Disable local authentication by default, enforcing Microsoft Entra authentication, however leave the option to explicitly enable local authentication if needed.
# variables.tf variable "local_auth_enabled" { # omitted type = bool default = false } # main.tf resource "azurerm_servicebus_namespace" "this" { # omitted local_auth_enabled = var.local_auth_enabled # omitted }
Module Name
service-bus
Description
Disable local authentication by default, enforcing Microsoft Entra authentication, however leave the option to explicitly enable local authentication if needed.
Example Terraform Configuration