From 09996db8809085140c1f9022a6c2ad9dd6b14155 Mon Sep 17 00:00:00 2001 From: Andrew Berry Date: Mon, 23 Sep 2024 09:08:14 -0400 Subject: [PATCH] Add missing port in docs for scanning ssh keys (#695) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 90bf23b6..c8afb11a 100644 --- a/README.md +++ b/README.md @@ -456,7 +456,7 @@ To enable deployment of Pantheon Review Apps: - Add the following [secrets to your GitHub repository](https://docs.github.com/en/codespaces/managing-codespaces-for-your-organization/managing-development-environment-secrets-for-your-repository-or-organization#adding-secrets-for-a-repository): - `PANTHEON_TERMINUS_TOKEN` See https://pantheon.io/docs/terminus/install#machine-token - `SSH_PRIVATE_KEY` A private key of a user which can push to Pantheon - - `SSH_KNOWN_HOSTS` The result of running `ssh-keyscan -H codeserver.dev.$PANTHEON_SITE_ID.drush.in` + - `SSH_KNOWN_HOSTS` The result of running `ssh-keyscan -H -p 2222 codeserver.dev.$PANTHEON_SITE_ID.drush.in` - `PANTHEON_REVIEW_USERNAME` (optional) A username for HTTP basic auth local - `PANTHEON_REVIEW_PASSWORD` (optional) The password to lock the site with @@ -502,7 +502,7 @@ Available variables are: | Variable | | |-----------------------------------|------------------------------------------------------------------------------------------------------------------------------------| | DRAINPIPE_DDEV_SSH_PRIVATE_KEY | SSH private key used for e.g. committing to git | -| DRAINPIPE_DDEV_SSH_KNOWN_HOSTS | The result of running e.g. `ssh-keyscan -H codeserver.dev.$PANTHEON_SITE_ID.drush.in` | +| DRAINPIPE_DDEV_SSH_KNOWN_HOSTS | The result of running e.g. `ssh-keyscan -H -p 2222 codeserver.dev.$PANTHEON_SITE_ID.drush.in` | | DRAINPIPE_DDEV_GIT_EMAIL | E-mail address to use for git commits | | DRAINPIPE_DDEV_GIT_NAME | Name to use for git commits | | DRAINPIPE_DDEV_COMPOSER_CACHE_DIR | Set to "false" to disable composer cache dir, or another value to override the default location of .ddev/.drainpipe-composer-cache | @@ -545,7 +545,7 @@ Requires `GITLAB_ACCESS_TOKEN` variable to be set, which is an access token with - Add the following [variables to your GitLab repository](https://docs.gitlab.com/ee/ci/variables/#for-a-project): - `PANTHEON_TERMINUS_TOKEN` See https://pantheon.io/docs/terminus/install#machine-token (enable the _Mask variable_ checkbox) - `SSH_PRIVATE_KEY` A private key of a user which can push to Pantheon (enable the _Mask variable_ checkbox) - - `SSH_KNOWN_HOSTS` The result of running `ssh-keyscan -H codeserver.dev.$PANTHEON_SITE_ID.drush.in` (enable the _Mask variable_ checkbox) + - `SSH_KNOWN_HOSTS` The result of running `ssh-keyscan -H -p 2222 codeserver.dev.$PANTHEON_SITE_ID.drush.in` (enable the _Mask variable_ checkbox) - `TERMINUS_PLUGINS` Comma-separated list of Terminus plugins to be available (optional) This will setup Merge Request deployment to Pantheon Multidev environments. See