Query regarding Security config folder directory structure

As per https://github.com/opensearch-project/security/pull/1749 and https://github.com/opensearch-project/documentation-website/pull/510/files, the security config file path is updated as below:

  1. “Before”
OpenSearch
│
└─── plugins
│     │
      └─── opensearch-security
│          │   
           └─── securityconfig
|               │   
                └─── *.yml
  1. After:
OpenSearch
│
└─── config
│     │
      └─── opensearch-security
│          │   
           └─── *.yml

However, When I installed the RPM v2.1.0 and checked the security config files are present at /etc/opensearch/opensearch-security .
Kindly, confirm about the default security config files’ path.
Thanks in advance.

@Pratiksha This is because you’re using RPM version that installs OpenSearch as a service. In 1.3.x the config folder was also placed in the /etc folder.

The above folder path applies to tar and docker versions.

Okay, Thanks for quick reply.