-
Notifications
You must be signed in to change notification settings - Fork 351
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
backend: add kafka connect secrets API #1115
Conversation
]; | ||
|
||
// The connector name. | ||
string name = 2 [ |
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.
I think we should add a relative strict character validation here (i.e. just alphanumeric and dash allowed?). If we allow /
etc we would allow users to escape the secretstore "jail" in AWS (e.g. /secrets/connectors/redpanda/{secretName}
they could use name = /i-dont/want-to/be/stored/in/your/directory
)
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.
I assume we also need to limit the length of all inputs (cluster name, connector secret name etc)
No description provided.