Skip to content
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

Document mysql_user_key parameter #309

Merged
merged 3 commits into from
Jul 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion spiceaidocs/docs/data-connectors/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ The MySQL data connector can be configured by providing the following `params`:
- `mysql_host`: The hostname of the MySQL server.
- `mysql_tcp_port`: The port of the MySQL server.
- `mysql_db`: The name of the database to connect to.
- `mysql_user`: The username to connect with.
- `mysql_user_key`: The name of the secret key containing the MySQL username.
- `mysql_user`: The MySQL username. Ignored if `mysql_user_key` is provided.
- `mysql_pass_key`: The secret key containing the password to connect with.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- `mysql_pass_key`: The secret key containing the password to connect with.
- `mysql_pass_key`: The name of the secret key containing the password to connect with.

- `mysql_pass`: The raw password to connect with, ignored if `mysql_pass_key` is provided.
- `mysql_sslmode`: Optional parameter, specifies the SSL/TLS behavior for the connection, supported values:
Expand Down