mirror of
https://github.com/outbackdingo/ansible-role-teleport.git
synced 2026-01-27 10:18:18 +00:00
* Quote config strings likely to start with strange characters * Add "teleport_default_address" config option * Update test Dockerfiles for python-netaddr * Update README for python-netaddr requirement
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
---
|
|
teleport_version: "2.3.5"
|
|
teleport_url: "https://github.com/gravitational/teleport/releases/download/v{{ teleport_version }}/teleport-v{{ teleport_version }}-linux-amd64-bin.tar.gz"
|
|
teleport_ssl_cert_path: "/etc/teleport"
|
|
teleport_config_path: "/etc/teleport.yaml"
|
|
teleport_nodename: 'teleport'
|
|
teleport_auth_token: ''
|
|
teleport_auth_servers:
|
|
- 127.0.0.1:3025
|
|
teleport_data_dir: '/var/lib/teleport'
|
|
|
|
teleport_log_level: 'WARN'
|
|
teleport_storage_type: 'bolt'
|
|
teleport_pidfile: '/var/run/teleport.pid'
|
|
|
|
teleport_default_address: '0.0.0.0'
|
|
|
|
# auth service
|
|
teleport_auth_enabled: true
|
|
teleport_auth_listen_address: '{{ teleport_default_address | ipwrap }}:3025'
|
|
teleport_auth_cluster_name: 'main'
|
|
teleport_auth_tokens_node: []
|
|
teleport_auth_tokens_proxy: []
|
|
teleport_auth_tokens_auth: []
|
|
teleport_auth_trusted_clusters: []
|
|
teleport_auth_oidc_connectors: []
|
|
|
|
# ssh service
|
|
teleport_ssh_enabled: true
|
|
teleport_ssh_listen_address: '{{ teleport_default_address | ipwrap }}:3022'
|
|
teleport_commands: []
|
|
|
|
# proxy service
|
|
teleport_proxy_enabled: true
|
|
teleport_proxy_listen_address: '{{ teleport_default_address | ipwrap }}:3023'
|
|
teleport_proxy_web_listen_address: '{{ teleport_default_address | ipwrap }}:3080'
|
|
teleport_proxy_tunnel_listen_address: '{{ teleport_default_address | ipwrap }}:3024'
|
|
teleport_proxy_https_key_file: ''
|
|
teleport_proxy_https_cert_file: ''
|