zulip/puppet/zulip_ops/manifests/teleport/application.pp

15 lines
416 B
ObjectPascal
Raw Normal View History

# @summary Adds an http "application" to the Teleport configuration for the host.
#
# See https://goteleport.com/docs/application-access/
define zulip_ops::teleport::application (
$port,
$description = '',
$order = '50',
) {
concat::fragment { "teleport_app_${name}":
target => '/etc/teleport_node.yaml',
order => $order,
content => template('zulip_ops/teleport_app.yaml.template.erb'),
}
}