Dapr URL
Published 31 October 2023
Dapr URL
Description
The REST API URL of your Dapr sidecar,
Example: http://localhost:3500/v1.0/secrets/my-secrets-store
Usage
Commandline
./flyway -dapr.url="http://localhost:3500/v1.0/secrets/my-secrets-store" info
TOML Configuration File
[flyway.dapr]
url = "http://localhost:3500/v1.0/secrets/my-secrets-store"
Configuration File
flyway.dapr.url=http://localhost:3500/v1.0/secrets/my-secrets-store
Environment Variable
FLYWAY_DAPR_URL=http://localhost:3500/v1.0/secrets/my-secrets-store
API
DaprConfigurationExtension daprConfigurationExtension = configuration.getPluginRegister().getPlugin(DaprConfigurationExtension.class)
daprConfigurationExtension.setDaprUrl("http://localhost:3500/v1.0/secrets/my-secrets-store");
Gradle
flyway {
pluginConfiguration = [
daprUrl: 'http://localhost:3500/v1.0/secrets/my-secrets-store'
]
}
Maven
<configuration>
<pluginConfiguration>
<daprUrl>http://localhost:3500/v1.0/secrets/my-secrets-store</daprUrl>
</pluginConfiguration>
</configuration>