We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d792eba commit 0c902deCopy full SHA for 0c902de
examples/complete/main.tf
@@ -23,6 +23,7 @@ data "alicloud_kvstore_instance_classes" "default" {
23
zone_id = data.alicloud_zones.default.zones[0].id
24
engine = "Redis"
25
engine_version = var.redis_engine_version
26
+ product_type = "OnECS"
27
}
28
29
module "vpc" {
examples/complete/variables.tf
@@ -49,7 +49,7 @@ variable "security_ips" {
49
variable "redis_engine_version" {
50
description = "The specification of the redis engine version."
51
type = string
52
- default = "4.0"
+ default = "7.0"
53
54
55
@@ -63,4 +63,4 @@ variable "redis_lazyfree_lazy_eviction" {
63
description = "The specification of the redis lazyfree-lazy-eviction."
64
65
default = "yes"
66
-}
+}
0 commit comments