Skip to content

Commit

Permalink
Add support for ESDB 24.10
Browse files Browse the repository at this point in the history
  • Loading branch information
dgivens committed Nov 14, 2024
1 parent 4ad0d0f commit 5ec7e60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion esc/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ var slowResourceTimeout = &schema.ResourceTimeout{
}

var validProviders = []string{"aws", "gcp", "azure"}
var validServerVersions = []string{"20.6", "20.10", "21.6", "21.10", "22.6", "22.10", "23.6", "23.10", "24.2", "24.6"}

// Note: Versions < 22.10 and 23.6 are no longer supported
var validServerVersions = []string{"20.6", "20.10", "21.6", "21.10", "22.6", "22.10", "23.6", "23.10", "24.2", "24.6", "24.10"}
var validTopologies = []string{"single-node", "three-node-multi-zone"}
var validInstanceTypes = []string{"F1", "C4", "M8", "M16", "M32", "M64", "M128"}
var validDiskTypes = []string{"GP2", "GP3", "SSD", "PREMIUM-SSD-LRS"}
Expand Down
5 changes: 1 addition & 4 deletions templates/resources/managed_cluster.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,11 @@ Use only the following values as `disk_type`:
| AWS | `gp2`, `gp3` |

For `server_version`, use one of the available EventStoreDB product versions:
- `20.10`
- `21.10`
- `22.6`
- `22.10`
- `23.6`
- `23.10`
- `24.2`
- `24.6`
- `24.10`

For `projection_level`, use one of the following values:
- `off` (the projections subsystem is disabled completely)
Expand Down

0 comments on commit 5ec7e60

Please sign in to comment.