-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
70 lines (57 loc) · 1.23 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
variable "aws_region" {
description = "AWS default region"
type = string
default = "us-east-1"
}
variable "aws_access_key" {
description = "AWS access key"
type = string
}
variable "aws_secret_key" {
description = "AWS secret key"
type = string
}
variable "aws_session_token" {
description = "AWS session token"
type = string
}
variable "key_pair_name" {
description = "Key pair name for instances"
type = string
}
variable "mongo_db_name" {
description = "mongo database name"
type = string
}
variable "mongo_username" {
description = "mongo database username"
type = string
}
variable "mongo_password" {
description = "mongo database password"
type = string
}
variable "app_secret" {
description = "app_secret"
type = string
}
variable "root_user" {
description = "Root User"
type = string
}
variable "root_password" {
description = "Root Password"
type = string
}
variable "rds_db_name" {
description = "Postgres database name"
type = string
}
variable "rds_username" {
description = "Postgres username"
type = string
}
variable "rds_password" {
description = "Postgres password"
type = string
}