Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created January 13, 2025 02:11
Show Gist options
  • Select an option

  • Save KyMidd/500492ba712bfb4df8cb2e29aff76d0c to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/500492ba712bfb4df8cb2e29aff76d0c to your computer and use it in GitHub Desktop.
resource "aws_lambda_layer_version" "slack_bolt" {
layer_name = "SlackBolt"
filename = "${path.module}/slack_bolt_layer.zip"
source_code_hash = filesha256("${path.module}/slack_bolt_layer.zip")
compatible_runtimes = ["python3.12"]
compatible_architectures = ["arm64"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment