ignore infrastucture file when zipping python

This commit is contained in:
Daniel Roth 2026-03-12 11:45:25 +00:00
parent b1ab1ee7ac
commit b55b601c15

View file

@ -6,7 +6,13 @@ variable "runtime" { type = string }
variable "zip_excludes" {
type = list(string)
default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**", "**/tests/**"]
default = [
"**/__pycache__/**",
"**/*.pyc",
"**/.pytest_cache/**",
"**/tests/**",
"**/infrastructure/**"
]
}
variable "timeout" {