mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 08:56:10 +00:00
See https://goteleport.com/docs/architecture/overview/ for the general architecture of a Teleport cluster. This commit adds a Teleport auth[1] and proxy[2] server. The auth server serves as a CA for granting time-bounded access to users and authenticating nodes on the cluster; the proxy provides access and a management UI. [1] https://goteleport.com/docs/architecture/authentication/ [2] https://goteleport.com/docs/architecture/proxy/
13 lines
373 B
Puppet
13 lines
373 B
Puppet
class zulip_ops::teleport::base {
|
|
include zulip::supervisor
|
|
|
|
$setup_apt_repo_file = "${::zulip_scripts_path}/lib/setup-apt-repo"
|
|
exec{ 'setup-apt-repo-teleport':
|
|
command => "${setup_apt_repo_file} --list teleport",
|
|
unless => "${setup_apt_repo_file} --list teleport --verify",
|
|
}
|
|
Package { 'teleport':
|
|
require => Exec['setup-apt-repo-teleport'],
|
|
}
|
|
}
|