File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
google/services/vpcaccess Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change
1
+ ```release-note:bug
2
+ vpcaccess: fixed an issue where Terraform config validation conditions could have erroneously invalidated existing `google_vpc_access_connector` resources
3
+ ```
Original file line number Diff line number Diff line change @@ -93,9 +93,8 @@ func ResourceVPCAccessConnector() *schema.Resource {
93
93
Computed : true ,
94
94
Optional : true ,
95
95
Description : `Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
96
- higher than the value specified by min_instances.` ,
96
+ higher than the value specified by min_instances. Required alongside 'min_instances' if not using 'min_throughput'/'max_throughput'. ` ,
97
97
ConflictsWith : []string {"max_throughput" },
98
- RequiredWith : []string {"min_instances" },
99
98
},
100
99
"max_throughput" : {
101
100
Type : schema .TypeInt ,
@@ -113,9 +112,8 @@ min_throughput. Only one of 'max_throughput' and 'max_instances' can be specifie
113
112
Computed : true ,
114
113
Optional : true ,
115
114
Description : `Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
116
- lower than the value specified by max_instances.` ,
115
+ lower than the value specified by max_instances. Required alongside 'max_instances' if not using 'min_throughput'/'max_throughput'. ` ,
117
116
ConflictsWith : []string {"min_throughput" },
118
- RequiredWith : []string {"max_instances" },
119
117
},
120
118
"min_throughput" : {
121
119
Type : schema .TypeInt ,
Original file line number Diff line number Diff line change @@ -108,12 +108,12 @@ The following arguments are supported:
108
108
* ` min_instances ` -
109
109
(Optional)
110
110
Minimum value of instances in autoscaling group underlying the connector. Value must be between 2 and 9, inclusive. Must be
111
- lower than the value specified by max_instances.
111
+ lower than the value specified by max_instances. Required alongside ` max_instances ` if not using ` min_throughput ` / ` max_throughput ` .
112
112
113
113
* ` max_instances ` -
114
114
(Optional)
115
115
Maximum value of instances in autoscaling group underlying the connector. Value must be between 3 and 10, inclusive. Must be
116
- higher than the value specified by min_instances.
116
+ higher than the value specified by min_instances. Required alongside ` min_instances ` if not using ` min_throughput ` / ` max_throughput ` .
117
117
118
118
* ` max_throughput ` -
119
119
(Optional)
You can’t perform that action at this time.
0 commit comments