Skip to content

Commit

Permalink
b/383149651 - Make export ranges fields immutable (#12592)
Browse files Browse the repository at this point in the history
[upstream:0eaffcc8f23d4e647a92bd489f1cbaf72a88f471]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician committed Dec 18, 2024
1 parent 088752a commit 6e76ecd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .changelog/12592.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
networkconnectivity: made `includeExportRanges`, `excludeExportRanges` mutable in `google_network_connectivity_spoke` to avoid recreation of resources (b/383149651)
```
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ The only allowed value for now is "ALL_IPV4_RANGES".`,
"exclude_export_ranges": {
Type: schema.TypeList,
Optional: true,
ForceNew: true,
Description: `IP ranges encompassing the subnets to be excluded from peering.`,
Elem: &schema.Schema{
Type: schema.TypeString,
Expand All @@ -164,7 +163,6 @@ The only allowed value for now is "ALL_IPV4_RANGES".`,
"include_export_ranges": {
Type: schema.TypeList,
Optional: true,
ForceNew: true,
Description: `IP ranges allowed to be included from peering.`,
Elem: &schema.Schema{
Type: schema.TypeString,
Expand Down Expand Up @@ -246,7 +244,6 @@ The only allowed value for now is "ALL_IPV4_RANGES".`,
"exclude_export_ranges": {
Type: schema.TypeList,
Optional: true,
ForceNew: true,
Description: `IP ranges encompassing the subnets to be excluded from peering.`,
Elem: &schema.Schema{
Type: schema.TypeString,
Expand All @@ -255,7 +252,6 @@ The only allowed value for now is "ALL_IPV4_RANGES".`,
"include_export_ranges": {
Type: schema.TypeList,
Optional: true,
ForceNew: true,
Description: `IP ranges allowed to be included from peering.`,
Elem: &schema.Schema{
Type: schema.TypeString,
Expand Down

0 comments on commit 6e76ecd

Please sign in to comment.