adutra commented on code in PR #3570: URL: https://github.com/apache/polaris/pull/3570#discussion_r2732977633
########## site/content/in-dev/unreleased/getting-started/deploying-polaris/cloud-deploy/deploy-aws.md: ########## @@ -40,9 +40,22 @@ The requirements to run the script below are: export ASSETS_PATH=$(pwd)/getting-started/assets/ export CLIENT_ID=root export CLIENT_SECRET=s3cr3t +export POSTGRES_PASSWORD=your_secure_password # Optional: If not set, a random password will be generated ./getting-started/assets/cloud_providers/deploy-aws.sh ``` +### Environment Variables + +The deployment script accepts the following environment variables: + +* **`ASSETS_PATH`** (required): Path to the getting-started assets directory +* **`CLIENT_ID`** (required): Client ID for Polaris authentication +* **`CLIENT_SECRET`** (required): Client secret for Polaris authentication +* **`POSTGRES_PASSWORD`** (optional): Password for the PostgreSQL database + * If not provided, a random 16-character password will be automatically generated + * Cannot be set to `postgres` for security reasons + * The generated or provided password will be displayed in the script output Review Comment: It seems only the generated one is displayed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
