Merge pull request #1456 from hashicorp/b-docker-input
providers/docker: default cert_path to non-nil so input isn't asked [GH-1432]
This commit is contained in:
commit
d7e8192456
|
@ -20,7 +20,7 @@ func Provider() terraform.ResourceProvider {
|
||||||
"cert_path": &schema.Schema{
|
"cert_path": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
DefaultFunc: schema.EnvDefaultFunc("DOCKER_CERT_PATH", nil),
|
DefaultFunc: schema.EnvDefaultFunc("DOCKER_CERT_PATH", ""),
|
||||||
Description: "Path to directory with Docker TLS config",
|
Description: "Path to directory with Docker TLS config",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -2322,6 +2322,24 @@ func TestSchemaMap_Input(t *testing.T) {
|
||||||
Err: false,
|
Err: false,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"input ignored when default function returns an empty string": {
|
||||||
|
Schema: map[string]*Schema{
|
||||||
|
"availability_zone": &Schema{
|
||||||
|
Type: TypeString,
|
||||||
|
Default: "",
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
Input: map[string]string{
|
||||||
|
"availability_zone": "bar",
|
||||||
|
},
|
||||||
|
|
||||||
|
Result: map[string]interface{}{},
|
||||||
|
|
||||||
|
Err: false,
|
||||||
|
},
|
||||||
|
|
||||||
"input used when default function returns nil": {
|
"input used when default function returns nil": {
|
||||||
Schema: map[string]*Schema{
|
Schema: map[string]*Schema{
|
||||||
"availability_zone": &Schema{
|
"availability_zone": &Schema{
|
||||||
|
|
Loading…
Reference in New Issue