Is there an existing issue for this?
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the contribution guide to help.
Description
Hi there!
With the new https://github.com/Azure/azure-functions-dapr-extension I'd like to be able to deploy an azure function container to be able to target a container app environment.
The current implementation is in preview, but sounds very promising for those using the Dapr Runtime.
see https://github.com/Azure/azure-functions-dapr-extension/pull/165/files for bicep examples of how the AzureRm handles this at the moment.
New or Affected Resource(s)/Data Source(s)
azurerm_linux_function_app
Potential Terraform Configuration
resource "azurerm_linux_function_app" "example" {
name = "example-linux-function-app"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
storage_account_name = azurerm_storage_account.example.name
storage_account_access_key = azurerm_storage_account.example.primary_access_key
container_app_environment = azurerm_container_app_environment.example.id
site_config {}
}
References
Azure/azure-functions-dapr-extension#165
Is there an existing issue for this?
Community Note
Description
Hi there!
With the new https://github.com/Azure/azure-functions-dapr-extension I'd like to be able to deploy an azure function container to be able to target a container app environment.
The current implementation is in preview, but sounds very promising for those using the Dapr Runtime.
see https://github.com/Azure/azure-functions-dapr-extension/pull/165/files for bicep examples of how the AzureRm handles this at the moment.
New or Affected Resource(s)/Data Source(s)
azurerm_linux_function_app
Potential Terraform Configuration
References
Azure/azure-functions-dapr-extension#165