-
Notifications
You must be signed in to change notification settings - Fork 38
fix: cloud advanced usage for cn #2946
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
Conversation
|
@everpcpc is attempting to deploy a commit to the Databend Team on Vercel. A member of the Team first needs to authorize it. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
💡 Codex Review
| 4. 在 Databend Cloud 工作区或 `BendSQL` 中执行以下 SQL 语句: | |
| ```sql | |
| CREATE CONNECTION databend_test STORAGE_TYPE = 's3' ROLE_ARN = 'arn:aws:iam::987654321987:role/databend-test'; | |
The trust policy example now enforces sts:ExternalId ("Condition": { "StringEquals": { "sts:ExternalId": "my-external-id-123" }}), but the connection creation SQL below still omits the EXTERNAL_ID parameter. When the role’s policy requires an external ID, CREATE CONNECTION ... ROLE_ARN = ... without EXTERNAL_ID will fail with AccessDenied because the assume-role call does not supply the required external ID. The sample should either show how to obtain the external ID and pass it (for example EXTERNAL_ID = 'my-external-id-123') or remove the condition. As written, following the instructions will not work.
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
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.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
No description provided.