provider/docker: fmt on container resource

This commit is contained in:
Paul Hinze 2015-04-20 14:18:46 -05:00
parent 9da91b1304
commit d9b3a99ef6

View file

@ -117,25 +117,25 @@ func resourceDockerContainer() *schema.Resource {
Set: stringSetHash,
},
"ip_address": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
"ip_address": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
"ip_prefix_length": &schema.Schema{
Type: schema.TypeInt,
Computed: true,
},
"ip_prefix_length": &schema.Schema{
Type: schema.TypeInt,
Computed: true,
},
"gateway": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
"gateway": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
"bridge": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
"bridge": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
},
}
}