AWS Graviton2
New Features
Added support for AWS Graviton2 architecture.
Example:
module "lambda" {
source = "moritzzimmer/lambda/aws"
architectures = ["arm64"]
description = "powered by AWS Graviton2"
filename = module.source.output_path
function_name = "arm64"
handler = "index.handler"
runtime = "nodejs14.x"
source_code_hash = module.source.output_base64sha256
}
What's Changed
- feat: added graviton support by @moritzzimmer in #49
Full Changelog: v5.16.0...v5.17.0