Default variable details
Some of the debops.opensearch default variables have more extensive
configuration than simple strings or lists. Here you can find documentation and
examples for them.
opensearch__configuration
The opensearch__*_configuration variables define the OpenSearch
configuration options that are set in the
/etc/opensearch/opensearch.yml configuration file. For example:
opensearch__configuration:
- name: 'cluster.name'
value: 'example-cluster'
- name: 'node.name'
comment: 'My first node'
value: 'node-1'
Each configuration entry is a list item containing a YAML dictionary. These parameters are supported:
nameString, mandatory. The name of the OpenSearch configuration entry.
valueString, mandatory. The value of the OpenSearch configuration entry. Can be a string, an integer, a boolean or a list.
commentString or YAML text block, optional. A comment added to the configuration entry.
stateString, optional. If not specified or
present, the entry will be included in the configuration file. Ifabsent, the entry will not be included.