Skip to content

Commit 9c159c6

Browse files
authored
Change required fields to computed in compute instance group datasource (#323)
1 parent 0f45759 commit 9c159c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/data_source_google_compute_instance_group.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ func dataSourceGoogleComputeInstanceGroup() *schema.Resource {
4444
Schema: map[string]*schema.Schema{
4545
"name": {
4646
Type: schema.TypeString,
47-
Required: true,
47+
Computed: true,
4848
},
4949

5050
"port": {
5151
Type: schema.TypeInt,
52-
Required: true,
52+
Computed: true,
5353
},
5454
},
5555
},

0 commit comments

Comments
 (0)