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 a3ff6f8 commit b1e4ce8Copy full SHA for b1e4ce8
modules/elasticache-redis-cluster/main.tf
@@ -1,6 +1,6 @@
1
locals {
2
metadata = {
3
- package = "terraform-aws-ec2"
+ package = "terraform-aws-db"
4
version = trimspace(file("${path.module}/../../VERSION"))
5
module = basename(path.module)
6
name = var.name
@@ -120,7 +120,7 @@ resource "aws_elasticache_replication_group" "this" {
120
121
## Auth
122
auth_token = length(var.password) > 0 ? var.password : null
123
- user_group_ids = var.user_groups
+ user_group_ids = length(var.user_groups) > 0 ? var.user_groups : null
124
125
126
## Encryption
0 commit comments