Popularity
0.6
Declining
Activity
0.0
Stable
0
1
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.
-
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
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.com
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"