This repository contains a Terraform module that helps you to deploy Azure DevOps self-hosted agents running on Azure Container Instance.
You can choose to deploy Linux or Windows agents, provide custom Docker images for the agents to include the tools you really need. It also give you the option to deploy the agents into a private virtual network, if the agents needs to access internal resources.
This module requires that you build your own Linux and/or Windows Docker images, to run the Azure DevOps agents. The docker contains Dockerfile and instructions for both.
Before running this module, you need to create an agent pool in your Azure DevOps organization and a personal access token that it authorized to manage this agent pool.
This module has 3 variables related to Azure DevOps:
azure_devops_org_name
: the name of your Azure DevOps organization (if you are connecting tohttps://dev.azure.com/helloworld
, thenhelloworld
is your organization name)azure_devops_personal_access_token
: the personal access token that you have generatedagent_pool_name
: both in thelinux_agents_configuration
andwindows_agents_configuration
, it is the name of the agent pool that you have created in which the Linux or Windows agents must be deployed
This module offers to create a new resource group to deploy the Azure Container instances into it, or import an existing one. This behavior is controlled using the create_resource_group
flag:
- if
create_resource_group
is set to true, the module will create a resource group namedresource_group_name
in thelocation
region - if
create_resource_group
is set to false, the module will import a resource group data source with the nameresource_group_name
The configuration below can be used to deploy Linux DevOps agents using Azure Container Instances.
module "aci-devops-agent" {
source = "Azure/aci-devops-agent/azurerm"
resource_group_name = "rg-linux-devops-agents"
location = "westeurope"
enable_vnet_integration = false
create_resource_group = true
linux_agents_configuration = {
agent_name_prefix = "linux-agent"
agent_pool_name = "DEVOPS_POOL_NAME"
count = 2,
docker_image = "jcorioland/aci-devops-agent"
docker_tag = "0.2-linux"
cpu = 1
memory = 4
}
azure_devops_org_name = "DEVOPS_ORG_NAME"
azure_devops_personal_access_token = "DEVOPS_PERSONAL_ACCESS_TOKEN"
}
Then, you can just Terraform it:
terraform init
terraform plan -out aci-linux-devops-agents.plan
terraform apply "aci-linux-devops-agents.plan"
You can destroy everything using terraform destroy
:
terraform destroy
The configuration below can be used to deploy Azure DevOps agents in Linux containers, in an existing virtual network.
resource "azurerm_resource_group" "vnet-rg" {
name = "rg-aci-devops-network"
location = "westeurope"
}
resource "azurerm_virtual_network" "vnet" {
name = "vnet-aci-devops"
address_space = ["10.0.0.0/16"]
location = azurerm_resource_group.vnet-rg.location
resource_group_name = azurerm_resource_group.vnet-rg.name
}
resource "azurerm_subnet" "aci-subnet" {
name = "aci-subnet"
resource_group_name = azurerm_resource_group.vnet-rg.name
virtual_network_name = azurerm_virtual_network.vnet.name
address_prefixes = ["10.0.1.0/24"]
delegation {
name = "acidelegation"
service_delegation {
name = "Microsoft.ContainerInstance/containerGroups"
actions = ["Microsoft.Network/virtualNetworks/subnets/join/action", "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action"]
}
}
}
module "aci-devops-agent" {
source = "Azure/aci-devops-agent/azurerm"
resource_group_name = "rg-linux-devops-agents"
location = "westeurope"
enable_vnet_integration = true
create_resource_group = true
vnet_resource_group_name = azurerm_resource_group.vnet-rg.name
vnet_name = azurerm_virtual_network.vnet.name
subnet_name = azurerm_subnet.aci-subnet.name
linux_agents_configuration = {
agent_name_prefix = "linux-agent"
agent_pool_name = "DEVOPS_POOL_NAME"
count = 2,
docker_image = "jcorioland/aci-devops-agent"
docker_tag = "0.2-linux"
cpu = 1
memory = 4
}
azure_devops_org_name = "DEVOPS_ORG_NAME"
azure_devops_personal_access_token = "DEVOPS_PERSONAL_ACCESS_TOKEN"
}
Then, you can just Terraform it:
terraform init
terraform plan -out aci-linux-devops-agents.plan
terraform apply "aci-linux-devops-agents.plan"
You can destroy everything using terraform destroy
:
terraform destroy
The configuration below can be used to deploy Azure DevOps Linux and Windows agents in containers on ACI.
module "aci-devops-agent" {
source = "Azure/aci-devops-agent/azurerm"
resource_group_name = "rg-aci-devops-agents-we"
location = "westeurope"
enable_vnet_integration = false
create_resource_group = true
linux_agents_configuration = {
agent_name_prefix = "linux-agent"
agent_pool_name = "DEVOPS_POOL_NAME"
count = 2,
docker_image = "jcorioland/aci-devops-agent"
docker_tag = "0.2-linux"
cpu = 1
memory = 4
}
windows_agents_configuration = {
agent_name_prefix = "windows-agent"
agent_pool_name = "DEVOPS_POOL_NAME"
count = 2,
docker_image = "jcorioland/aci-devops-agent"
docker_tag = "0.2-win"
cpu = 1
memory = 4
}
azure_devops_org_name = "DEVOPS_ORG_NAME"
azure_devops_personal_access_token = "DEVOPS_PERSONAL_ACCESS_TOKEN"
}
Then, you can just Terraform it:
terraform init
terraform plan -out aci-devops-agents.plan
terraform apply "aci-devops-agents.plan"
You can destroy everything using terraform destroy
:
terraform destroy
This module allows to download the Docker images to use for the agents from a private Docker images registry, like Azure Container Registry. It can be done like below:
module "aci-devops-agent" {
source = "Azure/aci-devops-agent/azurerm"
resource_group_name = "rg-linux-devops-agents"
location = "westeurope"
enable_vnet_integration = false
create_resource_group = true
linux_agents_configuration = {
agent_name_prefix = "linux-agent"
agent_pool_name = "DEVOPS_POOL_NAME"
count = 2,
docker_image = "jcorioland.azurecr.io/azure-devops/aci-devops-agent"
docker_tag = "0.2-linux"
cpu = 1
memory = 4
}
azure_devops_org_name = "DEVOPS_ORG_NAME"
azure_devops_personal_access_token = "DEVOPS_PERSONAL_ACCESS_TOKEN"
image_registry_credential = {
username = "DOCKER_PRIVATE_REGISTRY_USERNAME"
password = "DOCKER_PRIVATE_REGISTRY_PASSWORD"
server = "jcorioland.azurecr.io"
}
}
Then, you can just Terraform it:
terraform init
terraform plan -out aci-linux-devops-agents.plan
terraform apply "aci-linux-devops-agents.plan"
You can destroy everything using terraform destroy
:
terraform destroy
We provide 2 ways to build, run, and test the module on a local development machine. Native (Mac/Linux) or Docker.
We provide simple script to quickly set up module development environment:
$ curl -sSL https://raw.githubusercontent.com/Azure/terramodtest/master/tool/env_setup.sh | sudo bash
Then simply run it in local shell:
$ bundle install
$ rake build
$ rake full
We provide a Dockerfile to build a new image based FROM
the microsoft/terraform-test
Docker hub image which adds additional tools / packages specific for this module (see Custom Image section). Alternatively use only the microsoft/terraform-test
Docker hub image by using these instructions.
This builds the custom image:
$ docker build --build-arg BUILD_ARM_SUBSCRIPTION_ID=$ARM_SUBSCRIPTION_ID --build-arg BUILD_ARM_CLIENT_ID=$ARM_CLIENT_ID --build-arg BUILD_ARM_CLIENT_SECRET=$ARM_CLIENT_SECRET --build-arg BUILD_ARM_TENANT_ID=$ARM_TENANT_ID -t azure-devops-agent-aci-test .
This runs the build and unit tests:
$ docker run --rm \
-e TF_VAR_azure_devops_org_name=$AZDO_ORG_NAME \
-e TF_VAR_azure_devops_personal_access_token=$AZDO_PAT \
-e TF_VAR_azure_devops_pool_name=$AZDO_POOL_NAME \
azure-devops-agent-aci-test /bin/bash -c "bundle install && rake build"
This runs the end to end tests:
$ docker run --rm \
-e TF_VAR_azure_devops_org_name=$AZDO_ORG_NAME \
-e TF_VAR_azure_devops_personal_access_token=$AZDO_PAT \
-e TF_VAR_azure_devops_pool_name=$AZDO_POOL_NAME \
azure-devops-agent-aci-test /bin/bash -c "bundle install && rake e2e"
This runs the full tests:
$ docker run --rm \
-e TF_VAR_azure_devops_org_name=$AZDO_ORG_NAME \
-e TF_VAR_azure_devops_personal_access_token=$AZDO_PAT \
-e TF_VAR_azure_devops_pool_name=$AZDO_POOL_NAME \
azure-devops-agent-aci-test /bin/bash -c "bundle install && rake full"
With:
AZDO_ORG_NAME
being the name of the Azure DevOps organizationAZDO_PAT
being the personal access token to connect to Azure DevOpsAZDO_POOL_NAME
being the name of the Azure DevOps agent pool
Originally created by Julien Corioland
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.