Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class S3Executor(private val config: S3Config) : InfrastructureComponent<Localst

override fun start():ComponentInfo<LocalstackContainerConfig> {
localstack = LocalStackContainer(DockerImageName.parse(config.imageName))
.withServices(LocalStackContainer.Service.S3)
.withServices(LocalStackContainer.Service.S3, LocalStackContainer.Service.STS)

eventSource.startContainerAndEmitEvents(localstack)

Expand Down Expand Up @@ -128,4 +128,4 @@ data class LocalstackContainerConfig(
val accessKey: String,
val secretKey: String,
val endpointOverride: String
)
)