1
0

initial commit

This commit is contained in:
xpk
2026-02-13 15:44:24 +08:00
parent 66be8224f4
commit 09ce4c881a
570 changed files with 61807 additions and 0 deletions
@@ -0,0 +1,22 @@
variable "pip_packages" {
type = string
description = "List of pip packages, separated by space"
}
variable "pip_path" {
type = string
description = "Path to pip. Defaults to /usr/bin/pip3"
default = "/usr/bin/pip3"
}
variable "upload_archive_to_s3" {
type = bool
description = "Whether to upload layer archive to s3. Use this for zipped size >50M or unzipped size >250M. Limit is imposed by AWS API"
default = false
}
variable "s3_bucket_name" {
type = string
description = "Name of s3 bucket for storing lambda layer archive"
default = null
}