forked from terraform-aws-modules/terraform-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.tf
More file actions
76 lines (64 loc) · 2.73 KB
/
package.tf
File metadata and controls
76 lines (64 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# locals {
# python = (substr(pathexpand("~"), 0, 1) == "/") ? "python3" : "python.exe"
# }
# # Generates a filename for the zip archive based on the content of the files
# # in source_path. The filename will change when the source code changes.
# data "external" "archive_prepare" {
# count = var.create && var.create_package ? 1 : 0
# program = [local.python, "${path.module}/package.py", "prepare"]
# query = {
# paths = jsonencode({
# module = path.module
# root = path.root
# cwd = path.cwd
# })
# docker = var.build_in_docker ? jsonencode({
# docker_pip_cache = var.docker_pip_cache
# docker_build_root = var.docker_build_root
# docker_file = var.docker_file
# docker_image = var.docker_image
# with_ssh_agent = var.docker_with_ssh_agent
# docker_additional_options = var.docker_additional_options
# docker_entrypoint = var.docker_entrypoint
# }) : null
# artifacts_dir = var.artifacts_dir
# runtime = var.runtime
# source_path = jsonencode(var.source_path)
# hash_extra = var.hash_extra
# hash_extra_paths = jsonencode(
# [
# # Temporary fix when building from multiple locations
# # We should take into account content of package.py when counting hash
# # Related issue: https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/63
# # "${path.module}/package.py"
# ]
# )
# recreate_missing_package = var.recreate_missing_package
# }
# }
# # This transitive resource used as a bridge between a state stored
# # in a Terraform plan and a call of a build command on the apply stage
# # to transfer a noticeable amount of data
# resource "local_file" "archive_plan" {
# count = var.create && var.create_package ? 1 : 0
# content = data.external.archive_prepare[0].result.build_plan
# filename = data.external.archive_prepare[0].result.build_plan_filename
# directory_permission = "0755"
# file_permission = "0644"
# }
# # Build the zip archive whenever the filename changes.
# resource "null_resource" "archive" {
# count = var.create && var.create_package ? 1 : 0
# triggers = {
# filename = data.external.archive_prepare[0].result.filename
# timestamp = var.trigger_on_package_timestamp ? data.external.archive_prepare[0].result.timestamp : null
# }
# provisioner "local-exec" {
# interpreter = [
# local.python, "${path.module}/package.py", "build",
# "--timestamp", data.external.archive_prepare[0].result.timestamp
# ]
# command = data.external.archive_prepare[0].result.build_plan_filename
# }
# depends_on = [local_file.archive_plan]
# }