You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @etiennestuder, is it possible to provide the database password from a secret repository (e.g. AWS Parameter Store, AWS Secret Manager)? I don't want to commit and push the password because it is a public codebase.
jooq {
version = '3.19.15'
edition = JooqEdition.OSS
configurations {
main {
generationTool {
logging = org.jooq.meta.jaxb.Logging.WARN
jdbc {
driver = 'org.postgresql.Driver'
url = '...'
user = '...'
password = '...' <----- How do I supply password from a secret repository (e.g. AWS Parameter Store, AWS Secret Manager)
...
}
...
}
}
}
}
}
The text was updated successfully, but these errors were encountered:
Hi @etiennestuder, is it possible to provide the database password from a secret repository (e.g. AWS Parameter Store, AWS Secret Manager)? I don't want to commit and push the password because it is a public codebase.
The text was updated successfully, but these errors were encountered: