-
Notifications
You must be signed in to change notification settings - Fork 170
Open
Labels
enhancementNew feature or requestNew feature or request
Description
What problem are you facing?
Using the community provider for SQL can't connect to the cluster created if we reference the secrets generated by writeConnectionSecretToRef to the provider because it will search for password
and username
instead of master_username
and attribute.master_password
(as is required in their doc) so it requires so manual action modifying the secret and can't be solved in a GitOps way.
How the secrets should be stored:
apiVersion: v1
kind: Secret
data:
endpoint: xxxxxx
password: xxxxxx
port: xxxxxx
readerEndpoint: xxxxxx
username: xxxxxx
How are the secrets stored:
apiVersion: v1
kind: Secret
data:
endpoint: xxxxxx
attribute.master_password: xxxxxx
port: xxxxxx
readerEndpoint: xxxxxx
master_username: xxxxxx
How could Official AWS Provider help solve your problem?
Enabling a feature to allow configuring how that secret or parameters should be stored, thus allowing the choice to save the connection with a username and password to be compatible with the community SQL provider like other community providers do.
pmareke, yaariyuval, ivanfoo, chlunde, phclark and 2 morepmareke
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request