aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pu <michael.pu@uwaterloo.ca>2024-03-02 16:40:59 -0500
committerMichael Pu <michael.pu@uwaterloo.ca>2024-03-09 13:35:16 -0500
commit91b8da423bcf22ff0904c118496ea489183d0560 (patch)
tree7f448a682ab80672537b1498aeaf082738196ee0
parent9fe2ca58a024afe7172258d5c7ff0803bd08b57e (diff)
downloadsnowflake-91b8da423bcf22ff0904c118496ea489183d0560.tar.gz
snowflake-91b8da423bcf22ff0904c118496ea489183d0560.zip
update docs
-rw-r--r--doc/rendezvous-with-sqs.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/rendezvous-with-sqs.md b/doc/rendezvous-with-sqs.md
index 0b94c61..4da07fb 100644
--- a/doc/rendezvous-with-sqs.md
+++ b/doc/rendezvous-with-sqs.md
@@ -16,13 +16,12 @@ The machine on which the broker is being run must be equiped with the correct AW
## Client
To run the client with this rendezvous method, use the following CLI flags (they are all required):
- `sqsqueue` - URL of the SQS queue to use as a proxy for signalling
-- `sqsakid` - AWS Access Key ID of credentials for accessing the SQS queue
-- `sqsskey` - AWS Secrety Key of credentials for accessing the SQS queue
+- `sqscreds` - Encoded credentials for accessing the SQS queue
`sqsqueue` should correspond to the URL of the SQS queue that the broker is listening on.
For the example above, the following value can be used:
-`-sqsqueue https://sqs.us-east-1.amazonaws.com/893902434899/snowflake-broker -sqsakid some-aws-access-key-id -sqsskey some-aws-secret-key`
+`-sqsqueue https://sqs.us-east-1.amazonaws.com/893902434899/snowflake-broker -sqscreds some-encoded-sqs-creds`
*Public access to SQS queues is not allowed, so there needs to be some form of authentication to be able to access the queue. Limited permission credentials will be provided by the Snowflake team to access the corresponding SQS queue.*