9 lines
215 B
Plaintext
9 lines
215 B
Plaintext
|
local util = import 'util.libsonnet';
|
||
|
{
|
||
|
ssh: {
|
||
|
host: util.fromSecret('ssh-host'),
|
||
|
port: util.fromSecret('ssh-port'),
|
||
|
username: util.fromSecret('ssh-user'),
|
||
|
key: util.fromSecret('ssh-key'),
|
||
|
},
|
||
|
}
|