// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 package command import ( "os" "strings" "github.com/mitchellh/cli" ) type TLSCommand struct { Meta } func fileDoesNotExist(file string) bool { if _, err := os.Stat(file); os.IsNotExist(err) { return true } return false } func (c *TLSCommand) Help() string { helpText := ` Usage: nomad tls [options] This command groups subcommands for creating certificates for Nomad TLS configuration. The TLS command allows operators to generate self signed certificates to use when securing your Nomad cluster. Some simple examples for creating certificates can be found here. More detailed examples are available in the subcommands or the documentation. Create a CA $ nomad tls ca create Create a server certificate $ nomad tls cert create -server Create a client certificate $ nomad tls cert create -client ` return strings.TrimSpace(helpText) } func (c *TLSCommand) Synopsis() string { return "Generate Self Signed TLS Certificates for Nomad" } func (c *TLSCommand) Name() string { return "tls" } func (c *TLSCommand) Run(_ []string) int { return cli.RunResultHelp }