-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Readme updates for snowsql #70
base: master
Are you sure you want to change the base?
Conversation
@@ -197,7 +197,7 @@ ALTER USER EXAMPLE_USER SET RSA_PUBLIC_KEY = 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMI | |||
``` | |||
5. Verify your auth setup. If you have `snowsql` installed, that has an easy method (CTRL-d to exit) | |||
```bash | |||
snowsql -a <account_identifier>.<region>p -u <user> --private-key-path private_key.pem |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was the p
here intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope
@@ -197,7 +197,7 @@ ALTER USER EXAMPLE_USER SET RSA_PUBLIC_KEY = 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMI | |||
``` | |||
5. Verify your auth setup. If you have `snowsql` installed, that has an easy method (CTRL-d to exit) | |||
```bash | |||
snowsql -a <account_identifier>.<region>p -u <user> --private-key-path private_key.pem | |||
snowsql -a <account_identifier>.<region> -u <user> --private-key-path private_key.pem |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just checking: "account_identifier" is <orgname>.<account_name>
, is that right?
and "region" would be in a format like us-east-1
?
would this be a good example?
snowsql -a <account_identifier>.<region> -u <user> --private-key-path private_key.pem | |
# example: snowsql -a AAAAAAA.BBBBBBBB.us-east-1 -u john --private-key-path private_key.pem | |
snowsql -a <account_identifier>.<region> -u <user> --private-key-path private_key.pem |
No description provided.