Files
steampipe/constants/ssl.go

10 lines
178 B
Go

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