Hi folks,
I wanted that no one can make changes into my dashboard so i tried it with restrict the user access using api
curl -XPUT 'http://10.150.86.175:9200/Index Name/_settings' -d '{ "index.blocks.read_only" : true }'
It is working fine but now i want to make changes to the index so what call i need to make
curl -XPUT 'http://10.150.86.175:9200/logstash-altria_access/_settings' -d '{ "index.blocks.read_only" : false}'
I tried this but is not working for me