-
Notifications
You must be signed in to change notification settings - Fork 2
/
archive.tf
53 lines (52 loc) · 1.21 KB
/
archive.tf
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
data "archive_file" "creator" {
type = "zip"
output_path = "${path.module}/creator.zip"
source {
content = file("../src/creator.py")
filename = "creator.py"
}
source {
content = file("../src/shared_functions.py")
filename = "shared_functions.py"
}
source {
content = file("../src/encryption.py")
filename = "encryption.py"
}
source {
content = file("../src/ses_mailer.py")
filename = "ses_mailer.py"
}
source {
content = file("../src/mailgun_mailer.py")
filename = "mailgun_mailer.py"
}
source {
content = file("../src/smtp_mailer.py")
filename = "smtp_mailer.py"
}
}
data "archive_file" "destructor" {
type = "zip"
output_path = "${path.module}/destructor.zip"
source {
content = file("../src/destructor.py")
filename = "destructor.py"
}
source {
content = file("../src/shared_functions.py")
filename = "shared_functions.py"
}
source {
content = file("../src/ses_mailer.py")
filename = "ses_mailer.py"
}
source {
content = file("../src/mailgun_mailer.py")
filename = "mailgun_mailer.py"
}
source {
content = file("../src/smtp_mailer.py")
filename = "smtp_mailer.py"
}
}