Home Automatically set Azure Service Bus Queue Connection Strings during the Deployment
Post
Cancel

Automatically set Azure Service Bus Queue Connection Strings during the Deployment

In a previous post, I showed how to add the connection string of an Azure Service Bus Queue to your application using Azure DevOps pipelines. This was done using variables. The solution works, but it is not dynamic. In a cloud environment, you often delete and re-create environments. Therefore, you will have different access tokens which results in changing connection strings.

In this post, I will show you how you can read the connection string using Azure CLI and then pass it to your application inside an Azure DevOps pipeline.

This post is part of “Microservice Series - From Zero to Hero”.

Use Azure CLI to read the Azure Service Bus Queue Connection String

You can find the code of the demo on GitHub.

Using Azure CLI allows you to read the connection string of an Azure Service Bus Queue with a single command using the Azure CLI task in the Azure DevOps pipeline. After reading the connection string, use Write-Host to set it to the AzureServiceBusConnectionString variable.

The continueOnError parameter is not really necessary but it makes testing without an Azure Service Bus queue easier. With this parameter set to true, the pipeline will continue, even if no service bus connection string was found.

Use a Template inside the Azure DevOps Pipeline

In Improve Azure DevOps YAML Pipelines with Templates, I explained how to use templates to make your pipeline clearer. To continue using templates, I placed the code from above in a separate template named GetServiceBusConnectionString. Then I call this template during the deployment and pass the needed variables as parameters.

I use this template during the deployment of a pull request and for deploying to the test and production environment. The finished template looks as follows:

Lastly, add the following variables to your pipeline. Note to replace my values with your corresponding ones.

That’s already all you have to change. You don’t have to change more because the output variable of the GetServiceBusConnectionString template has the same name as the previously used one. The Tokenizer task will read the variable and add it to the Helm chart. You can read more about that in Replace Helm Chart Variables in your CI/CD Pipeline with Tokenizer.

Run your application and you should still be able to access your queue.

Conclusion

Using a cloud environment allows your infrastructure and applications to be flexible. Therefore, your configuration also has to be flexible. This post showed how you can easily read the connection string of an Azure Service Bus Queue using Azure CLI. By doing so, your application will always read the correct connection string and will work no matter what happens to the underlying infrastructure.

You can find the code of the demo on GitHub.

This post is part of “Microservice Series - From Zero to Hero”.

This post is licensed under CC BY 4.0 by the author.

Implement AAD Authentication to access Azure SQL Databases

C# 10.0 - What's new

Comments powered by Disqus.