services.teleport.settings
NixOS option
Contents of the teleport.yaml config file. The --config arguments will only be passed if this set is not empty. See https://goteleport.com/docs/setup/reference/config/.
type: YAML 1.1 valueDefault
{ }Example
declared in: nixos/modules/services/networking/teleport.nixView source on NixOS/nixpkgs →{
teleport = {
nodename = "client";
advertise_ip = "192.168.1.2";
auth_token = "60bdc117-8ff4-478d-95e4-9914597847eb";
auth_servers = [ "192.168.1.1:3025" ];
log.severity = "DEBUG";
};
ssh_service = {
enabled = true;
labels = {
role = "client";
};
};
proxy_service.enabled = false;
auth_service.enabled = false;
}