I am currently attempting to create a redis cache for azure via the cli using the typical example
az redis create --location westus2 --name MyRedisCache --resource-group MyResourceGroup --sku Basic --vm-size c0
However, what I'd love to do is use the ----redis-configuration add-on to tell redis I do NOT want to deal with security via the "requirepass" : " property
No matter how I try to add this property, I'm given an error.
Has anyone successfully used --redis-configuration to pass in additional requirements for the deployment?