Add bastion to export.

This commit is contained in:
Mariano Cano 2021-07-27 19:22:29 -07:00
parent 0730a165fd
commit 07f7316851

View file

@ -63,6 +63,15 @@ func (a *Authority) Export() (c *config.Configuration, err error) {
Key: mustMarshalToStruct(k), 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 // KMS