skip to Main Content

Azure Service Bus retry strategy with Spring Cloud Stream

I am using Spring Cloud Stream with Azure Service Bus. These are my relevant versions and dependencies: <spring-cloud-azure.version>4.3.0</spring-cloud-azure.version> <spring-cloud.version>2021.0.3</spring-cloud.version> <dependency> <groupId>com.azure.spring</groupId> <artifactId>spring-cloud-azure-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-stream</artifactId> </dependency> <dependency> <groupId>com.azure.spring</groupId> <artifactId>spring-cloud-azure-stream-binder-servicebus</artifactId> <version>4.3.0</version> </dependency> I want to implement retry policy, where message…

VIEW QUESTION

Update exsiting Azure App Service in Terraform

I would like to update my exsiting Azure App Service in Terraform by adding a Backup to this App Service. For now it looks like this: data "azurerm_app_service_plan" "example" { name = "MyUniqueServicePlan" resource_group_name = "example-resources" } resource "azurerm_app_service" "example"…

VIEW QUESTION

Terraform template for Azure App Service, LinuxFxVersion has an invalid value

This is how my terraform template looks like: resource "azurerm_resource_group" "example" { name = "myAppServiceRG" location = var.location } resource "azurerm_service_plan" "example" { name = var.servicePlanName resource_group_name = azurerm_resource_group.example.name location = azurerm_resource_group.example.location os_type = "Linux" sku_name = var.pricingTier worker_count =…

VIEW QUESTION
Back To Top
Search