Creates an AWS ElastiCache user for Redis with a complex access string defining specific permissions.

Terraform Template

resource "aws_elasticache_user" "test" {
  access_string = "on ~app::* -@all +@read +@hash +@bitmap +@geo -setbit -bitfield -hset -hsetnx -hmset -hincrby -hincrbyfloat -hdel -bitop -geoadd -georadius -georadiusbymember"
  engine = "REDIS"
  passwords = ["password123456789"]
  user_id = "testUserId"
  user_name = "testUserName"
}