Files
steampipe/pkg/constants/ssl.go

11 lines
214 B
Go

package constants
// constants for ssl key and certificate
const (
ServerCertKey = "server.key"
RootCertKey = "root.key"
ServerCert = "server.crt"
RootCert = "root.crt"
SslConfDir = "/etc/ssl"
)