Azure DevOps offers various standard tasks for interacting with virtual machines, such as “SSH Task” and “Azure CLI”. However, these tasks require a pre-configured Service Connection, which implies that the machine has already been created and configured manually or through separate procedures. This can conflict with automation principles, especially in agile environments where infrastructure is frequently recreated.
For example, in situations where virtual machines are created as part of automated CI/CD roadmaps and require immediate configuration, standard service connections are not appropriate. Regularly creating and deleting service accounts becomes an impractical and time-consuming process.
The problem is especially acute in automated test environments where resources change rapidly and any manual work becomes a bottleneck that slows down the process. DevOps environments require a fully automated solution that seamlessly integrates and configures virtual machines within a single Pipeline without additional manual operations.
Solution to the problem
An effective solution to the problem is to use Azure CLI and Bash scripts directly in Azure DevOps pipelines, allowing virtual machines to be created, configured and managed dynamically without preconfiguring service connections.
Example of automated pipelining using AzureCLI. We will create a virtual machine, configure certificate authorization, and establish an SSH connection: