2.2 Load Balancer Blueprint

This Blueprint creates a load balancer listening on port 80 that will forward traffic to a pre-configured target group.

#
# Tuono Hands-On Lab 
# HOL-202
#
---
networking:

  service:
    external-http:
      port: 80
      protocol: http

  balancer:
    hol-public-balancer:
      network: vnet-walkthrough
      scope: public
      routes:
       - from: external-http
         to: internal-http

Last updated

Was this helpful?