Skip to content

Commit

Permalink
Merge pull request #80 from EventStore/79-fix-to-enable-access-from-g…
Browse files Browse the repository at this point in the history
…cp-cloud-functions-to-eventstore-db

Peering route prefix length right boundary changed from 27 to 28
  • Loading branch information
Artur Gadelshin authored Nov 18, 2022
2 parents 570a9e2 + ca89920 commit f766844
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.5.21 (November 18, 2022)

Changes:

* `resource/eventstorecloud_peering` : `routes` prefix length is now allowed to be up to 28 instead of 27.

# 1.5.20 (September 8, 2022)

Changes:

* Allow server version "22.6" for managed clusters.

# 1.5.19 (August 4, 2022)

Changes:
Expand Down
2 changes: 1 addition & 1 deletion esc/resource_peering.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func resourcePeering() *schema.Resource {
Required: true,
Elem: &schema.Schema{
Type: schema.TypeString,
ValidateFunc: validation.IsCIDRNetwork(8, 27),
ValidateFunc: validation.IsCIDRNetwork(8, 28),
},
Set: schema.HashString,
},
Expand Down

0 comments on commit f766844

Please sign in to comment.