Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 2a0c192

Browse files
authored
Fix quotation mark for OpenSearch password (#1596)
1 parent 38240a1 commit 2a0c192

File tree

1 file changed

+2
-2
lines changed
  • content/en/user-guide/aws/opensearch

1 file changed

+2
-2
lines changed

content/en/user-guide/aws/opensearch/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ $ awslocal opensearch create-domain --cli-input-json file://./opensearch_domain.
214214
Once the domain setup is complete (`Processing: false`), the cluster can only be accessed with the given master user credentials, via HTTP basic authentication:
215215

216216
{{< command >}}
217-
$ curl -u "admin:really-secure-passwordAa!1" http://secure-domain.us-east-1.opensearch.localhost.localstack.cloud:4566/_cluster/health
217+
$ curl -u 'admin:really-secure-passwordAa!1' http://secure-domain.us-east-1.opensearch.localhost.localstack.cloud:4566/_cluster/health
218218
{{< /command >}}
219219

220220
The following output will be visible on your terminal:
@@ -265,7 +265,7 @@ docker run --rm -p 5601:5601 \
265265
--network ls \
266266
--dns 172.22.0.2 \
267267
-e "OPENSEARCH_HOSTS=http://secure-domain.us-east-1.opensearch.localhost.localstack.cloud:4566" \
268-
-e "OPENSEARCH_USERNAME=admin" -e "OPENSEARCH_PASSWORD=really-secure-passwordAa!1" \
268+
-e "OPENSEARCH_USERNAME=admin" -e 'OPENSEARCH_PASSWORD=really-secure-passwordAa!1' \
269269
opensearchproject/opensearch-dashboards:2.11.0
270270
{{< /command >}}
271271

0 commit comments

Comments
 (0)