Popularity
0.5
Declining
Activity
0.0
Stable
1
0
0
Monthly Downloads: 1
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v0.1.1
kerry alternatives and similar packages
Based on the "AWS" category.
Alternatively, view kerry alternatives based on common mentions on social networks and blogs.
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo
getstream.io

Do you think we are missing an alternative of kerry or a related project?
README
kerry
Packer configuration and serialization.
Example
import Kerry
write :: FilePath -> IO ()
write path =
writeFile path (renderPacker example)
example :: Packer
example =
Packer {
variables = [
UserVariable "name" "example-packer"
]
, builders = [
Builder (AmazonEBSBuilder $ aws builder) Nothing ssh
]
, provisioners = []
, postProcessors = []
}
ssh :: Communicator
ssh =
SSH $ defaultSSHCommunicator "ec2-user"
aws :: a -> AWS a
aws builder =
AWS {
awsRegion = "us-west-2"
, awsCredentials = EnvironmentVariables
, awsBuilder = builder
}
builder :: EBS
builder =
ebs
"test"
(SourceAmiId "ami-fred")
"m4.xlarge"