Luke Granger-Brown
7592e76a31
tokend is responsible for issuing service-scoped tokens based on the token held and generated by the Vault Agent. It can also generate "server-user" scoped tokens, which exist for convenience's sake: they are not a strong attestation of the user on the machine, and have limited privileges compared to a Vault token issued using e.g. `vault login -method=oidc`.
15 lines
513 B
Nix
15 lines
513 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
args: {
|
|
twitterchiver = import ./twitterchiver args;
|
|
twitternuke = import ./twitternuke args;
|
|
minotarproxy = import ./minotarproxy args;
|
|
streetworks = import ./streetworks args;
|
|
trains = import ./trains args;
|
|
nhsenglandtests = import ./nhsenglandtests args;
|
|
journal2clickhouse = import ./journal2clickhouse args;
|
|
secretsmgr = import ./secretsmgr args;
|
|
tokend = import ./tokend args;
|
|
}
|