11 lines
339 B
Plaintext
11 lines
339 B
Plaintext
|
local environment = import '../node_modules/@sigyl/jsonnet-drone-environment/environment.libsonnet';
|
||
|
{
|
||
|
ssh: {
|
||
|
settings +: {
|
||
|
host: environment.fromSecret('ssh-host'),
|
||
|
port: environment.fromSecret('ssh-port'),
|
||
|
username: environment.fromSecret('ssh-user'),
|
||
|
key: environment.fromSecret('ssh-key'),
|
||
|
},
|
||
|
},
|
||
|
}
|