You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
networkconnectivity: added support for updating `linked_vpn_tunnels.include_import_ranges`, `linked_interconnect_attachments.include_import_ranges`, `linked_router_appliance_instances. instances` and `linked_router_appliance_instances.include_import_ranges` in `google_network_connectivity_spoke`
3
+
```
4
+
```release-note:bug
5
+
networkconnectivity: fixed `linked_router_appliance_instances.instances.virtual_machine` and `linked_router_appliance_instances.instances.ip_address` attributes in `google_network_connectivity_spoke` to be correctly marked as required. Otherwise the request to create the resource will fail.
Copy file name to clipboardExpand all lines: google-beta/services/networkconnectivity/resource_network_connectivity_spoke.go
+33-5Lines changed: 33 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,6 @@ Please refer to the field 'effective_labels' for all of the labels present on th
92
92
"linked_interconnect_attachments": {
93
93
Type: schema.TypeList,
94
94
Optional: true,
95
-
ForceNew: true,
96
95
Description: `A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.`,
97
96
MaxItems: 1,
98
97
Elem: &schema.Resource{
@@ -176,7 +175,6 @@ The only allowed value for now is "ALL_IPV4_RANGES".`,
176
175
"linked_router_appliance_instances": {
177
176
Type: schema.TypeList,
178
177
Optional: true,
179
-
ForceNew: true,
180
178
Description: `The URIs of linked Router appliance resources`,
181
179
MaxItems: 1,
182
180
Elem: &schema.Resource{
@@ -190,13 +188,13 @@ The only allowed value for now is "ALL_IPV4_RANGES".`,
190
188
Schema: map[string]*schema.Schema{
191
189
"ip_address": {
192
190
Type: schema.TypeString,
193
-
Optional: true,
191
+
Required: true,
194
192
ForceNew: true,
195
193
Description: `The IP address on the VM to use for peering.`,
0 commit comments