2020-08-05 11:06:47 +00:00
|
|
|
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 +: {
|
2020-08-05 11:06:47 +00:00
|
|
|
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
|
|
|
},
|
|
|
|
}
|