Add bastion to export.

pull/633/head
Mariano Cano 3 years ago
parent 0730a165fd
commit 07f7316851

@ -63,6 +63,15 @@ func (a *Authority) Export() (c *config.Configuration, err error) {
Key: mustMarshalToStruct(k),
})
}
if b := v.Bastion; b != nil {
c.Ssh.Bastion = &config.Bastion{
Hostname: b.Hostname,
User: b.User,
Port: b.Port,
Command: b.Command,
Flags: b.Flags,
}
}
}
// KMS

Loading…
Cancel
Save