The REST API URL of your Dapr sidecar,
Example: http://localhost:3500/v1.0/secrets/my-secrets-store
./flyway -plugins.dapr.url="http://localhost:3500/v1.0/secrets/my-secrets-store" info
flyway.plugins.dapr.url=http://localhost:3500/v1.0/secrets/my-secrets-store
FLYWAY_PLUGINS_DAPR_URL=http://localhost:3500/v1.0/secrets/my-secrets-store
DaprConfigurationExtension daprConfigurationExtension = configuration.getPluginRegister().getPlugin(DaprConfigurationExtension.class)
daprConfigurationExtension.setDaprUrl("http://localhost:3500/v1.0/secrets/my-secrets-store");
flyway {
pluginConfiguration [
daprUrl: 'http://localhost:3500/v1.0/secrets/my-secrets-store'
]
}
<configuration>
<pluginConfiguration>
<daprUrl>http://localhost:3500/v1.0/secrets/my-secrets-store</daprUrl>
</pluginConfiguration>
</configuration>