Defined Type: envoyproxy::cluster
- Defined in:
- modules/envoyproxy/manifests/cluster.pp
Summary
defines a file containing an envoy cluster definitionOverview
SPDX-License-Identifier: Apache-2.0
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,
}
}
|