-
Notifications
You must be signed in to change notification settings - Fork 119
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
docs: Consolidate all R2DBC docs onto one page. #1606
Conversation
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.
LGTM
509efcc
to
fb85f2b
Compare
docs/r2dbc.md
Outdated
.option(DRIVER, "gcp") | ||
.option(PROTOCOL, "mysql") | ||
.option(PASSWORD, "password") | ||
.option(USER, "[email protected]") |
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.
Could we make these users service account users? In MySQL, everything after the @ sign is truncated. In postgres it's just [email protected] (and no .gserviceaccount.com)
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.
Ditto below under impersonation.
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.
This is sounding more like a rewrite of the IAM and Service Account Impersonation docs. Do we want to put that in a separate PR and make r2dbc.md and jdbc.md match?
docs/r2dbc.md
Outdated
.option(DRIVER, "gcp") | ||
.option(PROTOCOL, "mysql") | ||
.option(PASSWORD, "password") | ||
.option(USER, "[email protected]") |
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.
This user name needs to be a native user or be a correctly formatted IAM user.
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.
Fixed.
docs/r2dbc.md
Outdated
.option(DRIVER, "gcp") | ||
.option(PROTOCOL, "postgresql") | ||
.option(PASSWORD, "password") | ||
.option(USER, "[email protected]") |
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.
Let's use a service account example instead of a human user.
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.
Fixed.
roles/iam.serviceAccounts.serviceAccountTokenCreator. | ||
|
||
#### Mysql | ||
|
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.
Could MySQL and Postgres be combined with comments calling out differences?
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.
Yes done.
fb85f2b
to
ff03d7d
Compare
ff03d7d
to
6f05943
Compare
Consolidate all R2DBC docs into a single page for easier maintenance.
Part of #1550