We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected behavior:
tctl works in all scenarios.
Current behavior:
tctl using the user's identity works:
$ tctl users ls > User Roles > ----------------------------- ------------------------------------ > llama access,editor
tctl using a config file fails:
$ TELEPORT_CONFIG_FILE=/path/to/teleport.yaml tctl users ls > ERROR: device trust mode "required" requires Teleport Enterprise
tctl Enterprise v15, with the same invocation as above, works:
$ tctl15 version > Teleport Enterprise v15.4.9 git:v15.4.9-0-gaea5781 go1.22.5 $ TELEPORT_CONFIG_FILE=/path/to/teleport.yaml tctl15 users ls > User Roles > ----------------------------- ------------------------------------ > alpaca access,editor,require-trusted-device
A certain conjunction of factors has to be present for the failure to happen:
version: v1 teleport: # not relevant auth_service: # not relevant, except for enabled: "yes" authentication: device_trust: mode: required
This hits the following lines, in sequence:
teleport/tool/tctl/common/tctl.go
Line 325 in 3c0b25a
teleport/lib/config/configuration.go
Line 614 in 3c0b25a
Line 949 in 3c0b25a
teleport/lib/devicetrust/config/config.go
Line 54 in 3c0b25a
which then make the invocation fail, as the binary modules don't match the configuration.
Bug details:
The text was updated successfully, but these errors were encountered:
All backports are out. Good to close once v16 lands.
Sorry, something went wrong.
codingllama
No branches or pull requests
Expected behavior:
tctl works in all scenarios.
Current behavior:
tctl using the user's identity works:
tctl using a config file fails:
tctl Enterprise v15, with the same invocation as above, works:
A certain conjunction of factors has to be present for the failure to happen:
This hits the following lines, in sequence:
teleport/tool/tctl/common/tctl.go
Line 325 in 3c0b25a
teleport/lib/config/configuration.go
Line 614 in 3c0b25a
teleport/lib/config/configuration.go
Line 949 in 3c0b25a
teleport/lib/devicetrust/config/config.go
Line 54 in 3c0b25a
which then make the invocation fail, as the binary modules don't match the configuration.
Bug details:
The text was updated successfully, but these errors were encountered: