provider/docker: fmt on container resource

This commit is contained in:
Paul Hinze 2015-04-20 14:18:46 -05:00
parent aada41aa55
commit d55c8d8404
1 changed files with 16 additions and 16 deletions

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,
},
},
}
}