The password to use to connect to the database
This can be omitted if the password is baked into the url (See Sql Server for an example), or if password is provided through another means (such as aws secrets).
./flyway -password=mysecretpassword info
flyway.password=mysecretpassword
FLYWAY_PASSWORD=mysecretpassword
Flyway.configure()
.password("mysecretpassword")
.load()
flyway {
password = 'mysecretpassword'
}
<configuration>
<password>mysecretpassword</password>
</configuration>