File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,10 @@ change.
1616```
1717module "python_lambda_archive" {
1818 source = "rojopolis/lambda-python-archive/aws"
19- src_dir = "${path.module}/python"
20- output_path = "${path.module}/lambda.zip"
19+
20+ src_dir = "${path.module}/python"
21+ output_path = "${path.module}/lambda.zip"
22+ install_dependencies = false
2123}
2224
2325resource "aws_iam_role" "iam_for_lambda" {
Original file line number Diff line number Diff line change 11data "external" "lambda_archive" {
22 program = [" python3" , " ${ path . module } /scripts/build_lambda.py" ]
33 query = {
4- src_dir = var.src_dir
5- output_path = var.output_path
4+ src_dir = var.src_dir
5+ output_path = var.output_path
66 install_dependencies = var.install_dependencies
77 }
88}
You can’t perform that action at this time.
0 commit comments