Popularity
0.7
Growing
Activity
0.0
Stable
0
1
0
Monthly Downloads: 4
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.
-
aws-lambda-haskell-runtime
⚡Haskell runtime for AWS Lambda -
hal
hal provides an AWS Lambda Custom Runtime environment for your Haskell applications. -
aws-lambda-haskell-runtime-wai
Seamlessly deploy your existing Wai application on AWS Lambda. -
aws-cloudfront-signed-cookies
Generate signed cookies for AWS CloudFront
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of kerry or a related project?
Popular Comparisons
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"