Skip to content

Commit 501274e

Browse files
committed
fixup
1 parent c11cc9b commit 501274e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

deploy-manage/deploy/cloud-enterprise/connect-elasticsearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Once you have the endpoint, use it in your client application. To test connectiv
3232
* Modify the following `curl` example to fit your environment by replacing the URL and proxy CA certificate with your own values.
3333

3434
```sh
35-
curl --cacert /path/to/elastic-ece-ca-cert.pem -u elastic https://<HOST_ID>.<HOST_IP_ADDRESS>.ip.es.io:9243
35+
curl --cacert /path/to/elastic-ece-ca-cert.pem -u elastic https://<CLUSTER_ID.LOCAL_HOST_IP>.ip.es.io:9243
3636
{
3737
"name" : "instance-0000000000",
3838
"cluster_name" : "f76e96da2a7f4d3f8f3ee25d686b879c",

deploy-manage/deploy/cloud-enterprise/generate-roles-tokens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The permitted roles are the same as those you can [assign in the Cloud UI](./ass
5151
To generate an ephemeral token for additional allocators:
5252

5353
```sh
54-
curl -H 'Content-Type: application/json' -u USER:PASSWORD https://$COORDINATOR_HOST_IP:12443/api/v1/platform/configuration/security/enrollment-tokens -d '{ "persistent": false, "roles": [ "allocator"] }'
54+
curl -H 'Content-Type: application/json' -u USER:PASSWORD https://$COORDINATOR_HOST:12443/api/v1/platform/configuration/security/enrollment-tokens -d '{ "persistent": false, "roles": [ "allocator"] }'
5555
{
5656
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI0Njk3N2I3ZC1hM2U2LTQ2MDUtYjcwZC0xNzIzMTI5YWY4ZTQiLCJyb2xlcyI6WyJwcm94eSIsImFsbG9jYXRvciJdLCJpc3MiOiJib290c3RyYXAtaW5pdGlhbCIsImV4cCI6MTQ5MzY0NjIxM30.xsaRb72CsNMuXKy6Y-PJgqLc0qmjCljlB4Smcx_MRxg"
5757
}
@@ -60,7 +60,7 @@ curl -H 'Content-Type: application/json' -u USER:PASSWORD https://$COORDINATOR_H
6060
To generate a persistent token for additional allocators:
6161

6262
```sh
63-
curl -H 'Content-Type: application/json' -u USER:PASSWORD https://$COORDINATOR_HOST_IP:12443/api/v1/platform/configuration/security/enrollment-tokens -d '{ "persistent": true, "roles": [ "allocator"] }'
63+
curl -H 'Content-Type: application/json' -u USER:PASSWORD https://$COORDINATOR_HOST:12443/api/v1/platform/configuration/security/enrollment-tokens -d '{ "persistent": true, "roles": [ "allocator"] }'
6464
{
6565
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI0Yzg5OTBkZi0xZmI3LTQ4MjAtYjg2OC02YmM5ZTg4NjA4MTQiLCJyb2xlcyI6WyJwcm94eSIsImFsbG9jYXRvciJdLCJpc3MiOiJib290c3RyYXAtaW5pdGlhbCJ9.mfTkO4j8uZJ-qwB2jmBuMScyYfLmcJpvKgSTLx2WV24",
6666
"token_id": "4c8990df-1fb7-4820-b868-6bc9e8860814"

deploy-manage/deploy/cloud-enterprise/manage-elastic-stack-versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ curl -X GET -u USER:PASSWORD https://$COORDINATOR_HOST:12443/api/v1/stack/versio
300300
For example (output abridged for brevity):
301301

302302
```
303-
curl -X GET -u admin:4Z52y8Gq7PrxMDy47ipJPSh4ozBMynOGa9HWxcy2D3j https://<host-ip>:12443/api/v1/stack/versions
303+
curl -X GET -u admin:<cluster-id> https://<host-ip>:12443/api/v1/stack/versions
304304
{
305305
"stacks": [
306306
{
@@ -420,7 +420,7 @@ To add a new {{stack}} pack through the RESTful API from the command line:
420420
For example:
421421

422422
```sh
423-
curl -X POST -u admin:pGX5DwKzVAAIeCIpTwwAkCuJDu0ASdFP33UmYpfogfF https://$COORDINATOR_HOST:12443/api/v1/stack/versions \
423+
curl -X POST -u admin:pGX5DwKzVAAIeCIpTwwAkCuJDu0ASdFP33UmYpfogfF <host-url>:12443/api/v1/stack/versions \
424424
-H 'content-type: application/zip' \
425425
--data-binary "@/Users/iuriitceretian/Documents/stacks/5.4.0.zip"
426426
```

0 commit comments

Comments
 (0)