Skip to content

Instantly share code, notes, and snippets.

@kainlite
Created May 5, 2019 22:12
Show Gist options
  • Select an option

  • Save kainlite/85185e39960765a189ee70b5c9489fea to your computer and use it in GitHub Desktop.

Select an option

Save kainlite/85185e39960765a189ee70b5c9489fea to your computer and use it in GitHub Desktop.
terraform load balancer
# Create a load balancer associated with our cluster
resource "digitalocean_loadbalancer" "public" {
name = "loadbalancer-1"
region = "nyc1"
forwarding_rule {
entry_port = 80
entry_protocol = "http"
target_port = 30000
target_protocol = "http"
}
healthcheck {
port = 30000
protocol = "tcp"
}
droplet_tag = "dev-k8s-nodes"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment