From 5d40be32091a2c0d8ff342dfd8434ca20766120a Mon Sep 17 00:00:00 2001 From: Pete Wildsmith Date: Wed, 26 Apr 2017 18:48:57 +0100 Subject: [PATCH] reformat incorrectly formatted file --- builtin/providers/nomad/provider.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/builtin/providers/nomad/provider.go b/builtin/providers/nomad/provider.go index abefb3ce8d..61f8603bcb 100644 --- a/builtin/providers/nomad/provider.go +++ b/builtin/providers/nomad/provider.go @@ -25,22 +25,22 @@ func Provider() terraform.ResourceProvider { Description: "Region of the target Nomad agent.", }, "ca_file": &schema.Schema{ - Type: schema.TypeString, + Type: schema.TypeString, Optional: true, 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{ - Type: schema.TypeString, + Type: schema.TypeString, Optional: true, 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{ - Type: schema.TypeString, + Type: schema.TypeString, Optional: true, 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.", }, },