Try other Bamboo ENV var

This commit is contained in:
Artem Bilan
2023-09-20 14:17:07 -04:00
parent 7bef950202
commit f184d7be29

View File

@@ -52,7 +52,7 @@ public interface LocalstackContainerTest {
LocalStackContainer LOCAL_STACK_CONTAINER =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.2.0"))
.withEnv(Optional.ofNullable(System.getenv("bamboo.vault.github.password"))
.withEnv(Optional.ofNullable(System.getenv("bamboo_vault.github.password"))
.map(value -> Map.of("GITHUB_API_TOKEN", value))
.orElse(Map.of()));