A terraform module to provide load balancers in Azure with the following characteristics:
- Ability to specify
public
orprivate
loadbalancer using:var.type
. Default is public. - Specify subnet to use for the loadbalancer:
frontend_subnet_id
- For
private
loadbalancer, specify the private ip address usingfrontend_private_ip_address
- Specify the type of the private ip address with
frontend_private_ip_address_allocation
, Dynamic or Static , default isDynamic
Public loadbalancer example:
variable "location" {
default = "eastus"
}
module "mylb" {
source = "Azure/loadbalancer/azurerm"
resource_group_name = "${var.resource_group_name}"
location = "${var.location}"
prefix = "terraform-test"
"remote_port" {
ssh = ["Tcp", "22"]
}
"lb_port" {
http = ["80", "Tcp", "80"]
}
}
module "network" {
source = "Azure/network/azurerm"
location = "${var.location}"
resource_group_name = "${var.resource_group_name}"
}
Private loadbalancer example:
module "mylb" {
source = "Azure/loadbalancer/azurerm"
location = "westus"
type = "private"
frontend_subnet_id = "${module.network.vnet_subnets[0]}"
frontend_private_ip_address_allocation = "Static"
frontend_private_ip_address = "10.0.1.6"
"remote_port" {
ssh = ["Tcp", "22"]
}
"lb_port" {
http = ["80", "Tcp", "80"]
https = ["443", "Tcp", "443"]
}
"tags" {
cost-center = "12345"
source = "terraform"
}
}
module "network" {
source = "Azure/network/azurerm"
resource_group_name = "myapp"
location = "westus"
address_space = "10.0.0.0/16"
subnet_prefixes = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
subnet_names = ["subnet1", "subnet2", "subnet3"]
tags = {
environment = "dev"
costcenter = "it"
}
}
We provide 2 ways to build, run, and test module on local dev box:
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
We provide Dockerfile to build and run module development environment locally:
docker build -t azure-loadbalancer .
$ docker run -it azure-loadbalancer /bin/sh
$ rake build
Originally created by David Tesar