22 lines
609 B
Terraform
22 lines
609 B
Terraform
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
|
|
} |