├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── cloudwatch.tf ├── main.tf ├── outputs.tf ├── security_groups.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/README.md -------------------------------------------------------------------------------- /cloudwatch.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/cloudwatch.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/outputs.tf -------------------------------------------------------------------------------- /security_groups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/security_groups.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-community-modules/tf_aws_elasticache_redis/HEAD/variables.tf --------------------------------------------------------------------------------