Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions admin_guide/install/install_amazon_ecs.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -684,22 +684,20 @@ ifdef::prisma_cloud[]
https://<Console>/api/v1/certs/service-parameter \
-o service-parameter

* replace <Console> with the retrieved console address.
* replace <token> with the retrieve API token.
* Replace <Console> with the retrieved Console address.
* Replace <token> with the retrieved API token.

. ensure the jq package is installed.

. Retrieve and retain the installBundle from the Prisma Cloud API:
. Retrieve and retain the installBundle from the Prisma Cloud API. The jq package must be installed.

$ curl -k \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <token>' \
-X GET \
"https://<Console>/api/v1/defenders/install-bundle?consoleaddr=<ConsoleAddr>&defenderType=appEmbedded" | jq -r '.installBundle'

* replace <token> with the retrieve API token.
* replace <Console> with the retrieved console address URL from *Manage > System > Downloads* tab.
* replace <ConsoleAddr> with the first string of the URL (without the ID).
* Replace <token> with the retrieved API token.
* Replace <Console> with the retrieved Console address URL from the *Manage > System > Downloads* tab.
* Replace <ConsoleAddr> with the first string of the URL (without the ID).
For example, the URL may look like https://us-region1.cloud.twistlock.com/us-1-234567 , use just "us-region1.cloud.twistlock.com" for ConsoleAddr value.

endif::prisma_cloud[]
Expand All @@ -711,7 +709,7 @@ ifdef::compute_edition[]
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
https://<Load Balancer DNS name>:8083/api/v1/certs/service-parameter \
https://<Console>:8083/api/v1/certs/service-parameter \
-o service-parameter

. Retrieve and retain the installBundle from the Prisma Cloud API:
Expand All @@ -723,6 +721,9 @@ ifdef::compute_edition[]
"https://<Console>/api/v1/defenders/install-bundle?consoleaddr=<Console>&defenderType=appEmbedded" | jq -r '.installBundle'
+

* Replace <token> with the retrieve API token.
* Replace <Console> with the Console address URL.

. Copy the service-parameter file to the Defender EFS file system under /twistlock_certificates.

. Set the ownership and permissions for the service-parameter file under twistlock_certificates:
Expand Down