-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
49 lines (38 loc) · 956 Bytes
/
variables.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
variable "region" {
description = "You should choose one of following reagions,because of SESavailability: us-east-1,us-west-2,eu-west-1"
}
variable "client_name" {
description = "Client name"
}
variable "tag_environment" {
description = "Environment for the infrastructure"
}
variable "filename" {
description = "File name"
default = "cost_explorer.zip"
}
variable "lambda_timeout" {
description = "Lambda timeout"
}
variable "cron_job" {
description = "cron job"
}
variable "ses_sender" {
description = "sender of the email"
}
variable "ses_subject" {
description = "subject of the email"
}
variable "ses_recipient" {
description = "recipient of the email"
}
variable "owner" {
default = "Used to identify who is responsible for the resource"
}
variable "tag_deployment_method" {
default = "tf"
description = "How was the module deployed"
}
variable "lambda_zip_file_name" {
default = "cost_explorer.zip"
}