squid/.drone/lib/settings.libsonnet

11 lines
339 B
Plaintext
Raw Normal View History

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