#!/usr/bin/env bash
if [ -n "${AWS_ELASTICACHE_HOME:+x}" ]; then
        ${AWS_ELASTICACHE_HOME}/bin/elasticache elasticache-modify-cache-parameter-group "$@"
else
        echo AWS_ELASTICACHE_HOME is not set
        exit 1
fi
