Skip to content

Commit

Permalink
Merge pull request #189 from weixiong-ins/INS-19949-redis704-update
Browse files Browse the repository at this point in the history
INS-19949:Update Terraform tests and documentation for Redis 7.0.4
  • Loading branch information
admintfprovider authored Aug 25, 2022
2 parents 5ec1584 + 1bfab70 commit 9b218c1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BIN_NAME=terraform-provider-instaclustr
# for VERSION, don't add prefix "v", e.g., use "1.9.8" instead of "v1.9.8" as it could break circleCI stuff


VERSION=1.27.4
VERSION=1.27.5

INSTALL_FOLDER=$(HOME)/.terraform.d/plugins/terraform.instaclustr.com/instaclustr/instaclustr/$(VERSION)/darwin_amd64

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Configuration documentation can be found at the [Instaclustr Terraform Registry]
| OPENSEARCH | 1.3.4, 2.0.0 | |
| ELASTICSEARCH (For Legacy Support Only) | 1.13.3 | |
| KAFKA_CONNECT | 2.7.1, 2.8.1, 3.0.0, 3.1.1 | |
| REDIS | 6.2.7 | |
| REDIS | 6.2.7, 7.0.4 | |
| APACHE_ZOOKEEPER | 3.6.3, 3.7.1 | |
| POSTGRESQL | 13.7, 14.4 | |
| PGBOUNCER | 1.17.0 | POSTGRESQL |
Expand Down
4 changes: 2 additions & 2 deletions acc_test/data/valid_opensearch_cluster_create.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ resource "instaclustr_cluster" "validOpenSearch" {
version = "1.3.4"
options = {
dedicated_master_nodes = false,
master_node_size = "t3.small-v2",
data_node_size = "t3.small-v2",
master_node_size = "SRH-DEV-t4g.small-5",
data_node_size = "SRH-DEV-t4g.small-5",
security_plugin = true,
index_management_plugin = true
client_encryption = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "instaclustr_cluster" "validPostgresqlWithPgBouncer" {
options = {
postgresql_node_count = 1,
client_encryption = false,
replication_mode = "SYNCHRONOUS",
replication_mode = "ASYNCHRONOUS",
}
}

Expand Down
2 changes: 1 addition & 1 deletion acc_test/data/valid_redis_cluster_create.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "instaclustr_cluster" "validRedis" {

bundle {
bundle = "REDIS"
version = "6.2.7"
version = "7.0.4"
options = {
master_nodes = 3,
replica_nodes = 3,
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ A resource for managing clusters on Instaclustr Managed Platform. A cluster cont
| OPENSEARCH | 1.3.4, 2.0.0 | |
| ELASTICSEARCH (For Legacy Support Only) | 1.13.3 | |
| KAFKA_CONNECT | 2.7.1, 2.8.1, 3.0.0, 3.1.1 | |
| REDIS | 6.2.7 | |
| REDIS | 6.2.7, 7.0.4 | |
| APACHE_ZOOKEEPER | 3.6.3, 3.7.1 | |
| POSTGRESQL | 13.7, 14.4 | |
| PGBOUNCER | 1.17.0 | POSTGRESQL |
Expand Down

0 comments on commit 9b218c1

Please sign in to comment.