data "archive_file" "zip_file" {
type = "zip"
source_dir = ["../src", "../../common_lib"]
output_path = "lambda-code.zip"
}
This script doesn't work because the source_dir
only supports a single directory. Is there any way to include multiple directories?