nixcfg/cluster/staging/app/dummy/secrets.toml

37 lines
934 B
TOML

[service_users."dummy"]
description = 'Service user for dummy database access'
username_secret = "dummy/db_username"
password_secret = "dummy/db_password"
rotate_password = true
[secrets."dummy/s3_access_key"]
type = 'user'
description = 'S3 access key ID for database storage'
[secrets."dummy/s3_secret_key"]
description = 'S3 secret key for database storage'
type = 'user'
[secrets."dummy/public_domain"]
description = 'Publicly accessible domain for dummy resource'
type = 'user'
[secrets."dummy/form_secret"]
description = 'Form secret for dummy web pages'
type = 'command'
command = 'openssl rand -base64 42'
rotate = true
[secrets."dummy/signing_key"]
description = 'Key to use to sign dummy service data'
type = 'command'
command = 'openssl rand -base64 42'
[secrets."dummy/rpc_secret"]
description = 'RPC secret for communication between dummy nodes'
type = 'command'
command = 'openssl rand -base64 42'
rotate = true