Skip to content

Commit 78ef6ce

Browse files
feat: fixed create issue (#65)
Co-authored-by: anmolnagpal <anmol@clouddrove.com>
1 parent ae4e47a commit 78ef6ce

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

_example/memcached/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Terraform version
22
terraform {
3-
required_version = ">= 1.6.2"
3+
required_version = ">= 1.6.5"
44

55
required_providers {
66
aws = {
77
source = "hashicorp/aws"
8-
version = ">= 5.22.0"
8+
version = ">= 5.31.0"
99
}
1010
}
1111
}

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ resource "aws_elasticache_replication_group" "cluster" {
179179
kms_key_id = var.kms_key_id == "" ? join("", aws_kms_key.default[*].arn) : var.kms_key_id
180180
tags = module.labels.tags
181181
num_cache_clusters = var.num_cache_clusters
182+
user_group_ids = var.user_group_ids
182183

183184
dynamic "log_delivery_configuration" {
184185
for_each = var.log_delivery_configuration

variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ variable "port" {
7272
sensitive = true
7373
}
7474

75+
variable "user_group_ids" {
76+
type = list(string)
77+
default = [""]
78+
description = "User Group ID to associate with the replication group."
79+
}
80+
7581
variable "node_type" {
7682
type = string
7783
default = "cache.t2.small"

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Terraform version
22
terraform {
3-
required_version = ">= 1.6.6"
3+
required_version = ">= 1.6.5"
44

55
required_providers {
66
aws = {

0 commit comments

Comments
 (0)