diff --git a/expressions.go b/expressions.go index 1a2a57d..6036754 100644 --- a/expressions.go +++ b/expressions.go @@ -201,14 +201,13 @@ func formatString(key string) string { } func getSecretKeyWithScope(key string) string { - camelCase := ToCamelCase(key) switch migrationReq.SecretScope { case Account: - return Account + "." + camelCase + return Account + "." + key case Org: - return Org + "." + camelCase + return Org + "." + key default: - return camelCase + return key } }