azure_function_app@4.2.1
·
14 commits
to main
since this release
Patch Changes
-
dba6e7b: Expose storage account
primary_queue_endpointoutput.Both
azure_function_appandazure_storage_accountmodules now expose the primary queue endpoint:storage_account.primary_queue_endpoint.
This enables RBAC authentication configuration on queues.Example
Configure managed identity authentication for Azure Functions queue triggers using the queue endpoint (where
module.storageis an instance of theazure_storage_accountmodule):app_settings = { AzureWebJobsStorage__accountName = module.storage.name # Set the storage account name for Azure Functions AzureWebJobsStorage__queueServiceUri = module.storage.primary_queue_endpoint # Set the queue service URI for Azure Functions to enable identity-based authentication }
This enables identity-based connections without requiring connection strings, improving security for Azure Functions bindings.