Defined Type: envoyproxy::cluster

Defined in:
modules/envoyproxy/manifests/cluster.pp

Summary

defines a file containing an envoy cluster definition

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:

  • content (String)

    The content of the cluster definition

  • priority (Integer[0,99]) (defaults to: 50)

    The priority of this cluster in the clusters list



9
10
11
12
13
14
15
16
17
18
# File 'modules/envoyproxy/manifests/cluster.pp', line 9

define envoyproxy::cluster(
  String $content,
  Integer[0,99] $priority = 50,
) {
  envoyproxy::conf{ $title:
    content   => $content,
    conf_type => 'cluster',
    priority  => $priority,
  }
}