Redgate Summit – The Database DevOps Transformation Watch now
PASS Data Community Summit logo

PASS Data Community Summit

A hybrid conference in Seattle and online

15-18 November

Flyway Documentation

This documentation is deprecated. The new documentation can now be found on documentation.red-gate.com

Poll

Dapr URL

Flyway Teams

Description

The REST API URL of your Dapr sidecar,

Example: http://localhost:3500/v1.0/secrets/my-secrets-store

Usage

Commandline

./flyway -plugins.dapr.url="http://localhost:3500/v1.0/secrets/my-secrets-store" info

Configuration File

flyway.plugins.dapr.url=http://localhost:3500/v1.0/secrets/my-secrets-store

Environment Variable

FLYWAY_PLUGINS_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>