All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.playtika.testcontainer.spicedb.SpiceDBProperties Maven / Gradle / Ivy

There is a newer version: 3.1.9
Show newest version
package com.playtika.testcontainer.spicedb;

import com.playtika.testcontainer.common.properties.CommonContainerProperties;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@EqualsAndHashCode(callSuper = true)
@ConfigurationProperties("embedded.spicedb")
public class SpiceDBProperties extends CommonContainerProperties {
    static final String BEAN_NAME_EMBEDDED_SPICEDB = "embeddedSpiceDB";
    static final String BEAN_NAME_EMBEDDED_SPICEDB_TOXI_PROXY = "embeddedSpiceDbToxiProxy";

    int port = 50051;
    String presharedKey = "somerandomkeyhere";

    @Override
    public String getDefaultDockerImage() {
        // Please don`t remove this comment.
        // renovate: datasource=docker
        return "authzed/spicedb:v1.29.0";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy