Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 705 Bytes

File metadata and controls

28 lines (22 loc) · 705 Bytes

ElastiCache

Description

Scripts for managing ElastiCache clusters (Redis and Memcached).

Scripts

create_cluster.py

python services/elasticache/create_cluster.py --cluster-id my-redis --engine redis --node-type cache.t3.micro
python services/elasticache/create_cluster.py --cluster-id my-memcached --engine memcached --num-nodes 2

list_clusters.py

python services/elasticache/list_clusters.py

Expected output:

[INFO] Cluster: my-redis | engine=redis | status=creating

delete_cluster.py

python services/elasticache/delete_cluster.py --cluster-id my-redis
python services/elasticache/delete_cluster.py --cluster-id my-redis --dry-run