Change required fields to computed in compute instance group datasource (#323)

This commit is contained in:
Vincent Roseberry 2017-08-11 15:49:45 -07:00 committed by GitHub
parent 0f45759165
commit 9c159c6a96

View File

@ -44,12 +44,12 @@ func dataSourceGoogleComputeInstanceGroup() *schema.Resource {
Schema: map[string]*schema.Schema{ Schema: map[string]*schema.Schema{
"name": { "name": {
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Computed: true,
}, },
"port": { "port": {
Type: schema.TypeInt, Type: schema.TypeInt,
Required: true, Computed: true,
}, },
}, },
}, },