ca-archived / tunable-aws-ssm   1.0.3

MIT License GitHub

com.twitter.util-tunable implementation for AWS SSM

Scala versions: 2.12 2.11

tunable-aws-ssm

CircleCI Maven Central

This is com.twitter.util.tunable.Tunable implementation for AWS SSM.

Install

libraryDependencies += "io.github.CyberAgent" %% "tunable-aws-ssm" % version

Usage

import com.amazonaws.services.simplesystemsmanagement.AWSSimpleSystemsManagementClient
import com.twitter.util.tunable.{Tunable, TunableMap}
import io.github.cyberagent.tunable.aws.ssm.AwsSsmTunableMap

val client = AWSSimpleSystemsManagementClient.builder().build()
val tunableMap = AwsSsmTunableMap("/path/to/tunable", client)

val tunable: Tunable[String] = tunableMap(TunableMap.Key[String]("key"))

tunable() match {
  case None        => println("tunable is not configured")
  case Some(value) => println(value)
}

Testing

Preparation

docker pull localstack/localstack

If docker is installed on non-standard location, please set DOCKER_LOCATION environment variable to point it.

Run

sbt test