Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.49 KB

haproxy_use_backend.md

File metadata and controls

44 lines (32 loc) · 1.49 KB

haproxy_use_backend

Back To Resource List

Switch to a specific backend if/unless an ACL-based condition is matched.

Introduced: v4.2.0

Actions

  • :create
  • :delete

Properties

This resource also uses the following partial resources:

Name Type Default Description Allowed Values
use_backend String, Array None Switch to a specific backend if/unless an ACL-based condition is matched
section String None The section where the acl(s) should be applied frontend, listen, backend
section_name String None The name of the specific frontend, listen or backend section

Examples

haproxy_use_backend 'gina if gina_host' do
  section 'frontend'
  section_name 'http'
end
haproxy_use_backend 'use_backends for frontend:http' do
  section 'frontend'
  section_name 'http'
  use_backend [
    'rrhost if rrhost_host',
    'tiles_public if tile_host',
  ]
end