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

com.playtika.test.localstack.LocalStackProperties Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package com.playtika.test.localstack;

import java.util.Collection;
import java.util.Collections;

import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.testcontainers.containers.localstack.LocalStackContainer;

import com.playtika.test.common.properties.CommonContainerProperties;

@Data
@EqualsAndHashCode(callSuper = true)
@ConfigurationProperties("embedded.localstack")
public class LocalStackProperties extends CommonContainerProperties {
    public static final String BEAN_NAME_EMBEDDED_LOCALSTACK = "embeddedLocalstack";
    public Collection services = Collections.emptyList();
    public int edgePort = 4566;
    public String defaultRegion = "us-east-1";
    public String hostname = "localhost";
    public String hostnameExternal = "localhost";
    public String dockerImage = "localstack/localstack:0.10.8";
    public boolean useSsl = false;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy