-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
74 lines (61 loc) · 1.92 KB
/
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
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
variable "aws_region" {
default = "us-east-1"
}
variable "application_id" {
type = string
description = "The uniuqe Id for the application"
default = "covid19etl"
}
variable "envionment" {
type = string
description = "Envionment type of the application eg. dev, test, prod."
default = "dev"
}
variable "runtime" {
default = "python3.6"
type = string
description = "Runtime for lambda function."
}
variable "landing_zone_bucket_name" {
type = string
description = "A unique bucket name for landing zone."
}
variable "trigger_time" {
type = string
description = "Time of the day when you want to trigger your ETL job."
}
variable "nyt_url" {
default = "https://raw.githubusercontent.com/nytimes/covid-19-data/master/us.csv"
type = string
description = "URL for NYT Covid19 data."
}
variable "jh_url" {
default = "https://raw.githubusercontent.com/datasets/covid-19/master/data/time-series-19-covid-combined.csv"
type = string
description = "URL for NYT Covid19 data."
}
variable "table_name" {
default = "covid19us"
type = string
description = "Table name to store the data."
}
variable "database_name" {
default = "uscovid19db"
type = string
description = "Database name for the Postgres."
}
variable "databse_secret_name" {
type = string
description = "Secret name for the Postgres database."
default = "uscovid19db_secrets"
}
variable "business_subscription_email_address_list" {
type = string
description = "List of email addresses as string(space separated) of business users."
default = "er.ankit.cs@gmail.com"
}
variable "technology_subscription_email_address_list" {
type = string
description = "List of email addresses as string(space separated) of Teachnology team."
default = "er.ankit.cs@gmail.com"
}