reformat incorrectly formatted file

This commit is contained in:
Pete Wildsmith 2017-04-26 18:48:57 +01:00
parent b1c03e93df
commit 5d40be3209
1 changed files with 6 additions and 6 deletions

View File

@ -25,22 +25,22 @@ func Provider() terraform.ResourceProvider {
Description: "Region of the target Nomad agent.", Description: "Region of the target Nomad agent.",
}, },
"ca_file": &schema.Schema{ "ca_file": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Optional: true, Optional: true,
DefaultFunc: schema.EnvDefaultFunc("NOMAD_CACERT", ""), DefaultFunc: schema.EnvDefaultFunc("NOMAD_CACERT", ""),
Description: "A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.", Description: "A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.",
}, },
"cert_file": &schema.Schema{ "cert_file": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Optional: true, Optional: true,
DefaultFunc: schema.EnvDefaultFunc("NOMAD_CLIENT_CERT", ""), DefaultFunc: schema.EnvDefaultFunc("NOMAD_CLIENT_CERT", ""),
Description: "A path to a PEM-encoded certificate provided to the remote agent; requires use of key_file.", Description: "A path to a PEM-encoded certificate provided to the remote agent; requires use of key_file.",
}, },
"key_file": &schema.Schema{ "key_file": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Optional: true, Optional: true,
DefaultFunc: schema.EnvDefaultFunc("NOMAD_CLIENT_KEY", ""), DefaultFunc: schema.EnvDefaultFunc("NOMAD_CLIENT_KEY", ""),
Description: "A path to a PEM-encoded private key, required if cert_file is specified.", Description: "A path to a PEM-encoded private key, required if cert_file is specified.",
}, },
}, },