Skip to content

Commit 8a939ff

Browse files
author
Marat Salimzianov
committed
Updated README
1 parent f74abbc commit 8a939ff

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ change.
1616
```
1717
module "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
2325
resource "aws_iam_role" "iam_for_lambda" {

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
data "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
}

0 commit comments

Comments
 (0)