squid/.drone/lib/settings.libsonnet

11 lines
248 B
Plaintext
Raw Normal View History

2020-08-05 07:44:33 +00:00
local util = import 'util.libsonnet';
{
ssh: {
2020-08-05 07:49:09 +00:00
settings +: {
host: util.fromSecret('ssh-host'),
port: util.fromSecret('ssh-port'),
username: util.fromSecret('ssh-user'),
key: util.fromSecret('ssh-key'),
},
2020-08-05 07:44:33 +00:00
},
}