mirror of https://github.com/zulip/zulip.git
15 lines
416 B
Puppet
15 lines
416 B
Puppet
# @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'),
|
|
}
|
|
}
|