mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
Conditionally overwrite TLS parameters for MySQL secrets engine (#9729)
* Conditionally overwrite TLS parameters in MySQL DSN Overwrite MySQL TLS configuration in MySQL DSN only if have `tls_ca` or `tls_certificate_key` set Current logic always overwrites it * Add test for MySQL DSN with a valid TLS parameter in query string
This commit is contained in:
@@ -45,6 +45,11 @@ func Test_addTLStoDSN(t *testing.T) {
|
||||
tlsConfigName: "tlsTest101",
|
||||
expectedResult: "user:pa?ssword?@tcp(localhost:3306)/test?tls=tlsTest101&foo=bar",
|
||||
},
|
||||
"tls, valid tls parameter in query string": {
|
||||
rootUrl: "user:password@tcp(localhost:3306)/test?tls=true",
|
||||
tlsConfigName: "",
|
||||
expectedResult: "user:password@tcp(localhost:3306)/test?tls=true",
|
||||
},
|
||||
}
|
||||
|
||||
for name, test := range tests {
|
||||
|
||||
Reference in New Issue
Block a user