mirror of
https://github.com/Luzifer/vault-openvpn.git
synced 2024-11-09 16:50:04 +00:00
26 lines
507 B
Go
26 lines
507 B
Go
package cmd
|
|
|
|
import "time"
|
|
|
|
type templateVars struct {
|
|
CertAuthority string
|
|
Certificate string
|
|
PrivateKey string
|
|
TLSAuth string
|
|
}
|
|
|
|
type listCertificatesTableRow struct {
|
|
FQDN string `json:"fqdn"`
|
|
NotBefore time.Time `json:"not_before"`
|
|
NotAfter time.Time `json:"not_after"`
|
|
Serial string `json:"serial"`
|
|
}
|
|
|
|
func (l listCertificatesTableRow) ToLine() []string {
|
|
return []string{
|
|
l.FQDN,
|
|
l.NotBefore.Format(dateFormat),
|
|
l.NotAfter.Format(dateFormat),
|
|
l.Serial,
|
|
}
|
|
}
|