**On behalf of a user of Slack **
hello. I have one question.
I can access my_opensearch_cluster with curl -u admin:admin http://localhost:9200/_cat/health
I want to access my_opensearch_cluster with curl http://localhost:9200/_cat/health.
If so, can’t I set anything other than plugins.security.disabled: true
?
What I want is to enable TLS communication and proceed with API communication without authentication.
I can’t enable anonymous auth.
The login page still appears when accessing the OSD/
# config.yml (DataNode, MasterNode)
data: #{}
config.yml: |
config:
dynamic:
http:
anonymous_auth_enabled: true
roles_mapping.yml: |-
anonymous:
backend_roles:
- "opendistro_security_anonymous_backendrole"
roles.yml: |-
anonymous:
cluster_permissions:
- "cluster_composite_ops"
- "cluster:monitor/main"
index_permissions:
- index_patterns:
- "*"
allowed_actions:
- "read"
# opensearch_dashboard.yml ( OSD )
config:
opensearch_dashboards.yml: |
...
opensearch_security:
auth:
anonymous_auth_enabled: true