0

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?

1 Answer 1

1

Considering Azure Redis is a fully managed service where Microsoft creates and manages the Redis instance(s) (updates, automatic failover etc.) on behalf of the customer, not all configuration settings (like requirepass) are exposed to users.

Looking at the REST API documentation for creating an Azure Redis instance, few configuration settings that can be changed are:

rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.

Sign up to request clarification or add additional context in comments.

1 Comment

That's what I was afraid of

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.