-
Notifications
You must be signed in to change notification settings - Fork 4
/
variables.tf
43 lines (42 loc) · 1.01 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
variable "public_key" {
description = "The public API key for MongoDB Atlas"
}
variable "private_key" {
description = "The private API key for MongoDB Atlas"
}
variable "access_key" {
description = "The access key for AWS Account"
}
variable "secret_key" {
description = "The secret key for AWS Account"
}
variable "atlas_region" {
default = "US_EAST_1"
description = "Atlas Region"
}
variable "aws_region" {
default = "ap-southeast-1"
description = "AWS Region"
}
variable "atlas_dbuser" {
description = "The db user for Atlas"
}
variable "atlas_dbpassword" {
description = "The db user passwd for Atlas"
}
variable "aws_account_id" {
description = "My AWS Account ID"
default = "208629369896"
}
variable "atlasorgid" {
description = "Atlas Org ID"
default = "5c98a80fc56c98ef210b8633"
}
variable "atlasprojectid" {
description = "Atlas Project ID"
default = "5c98a80fc56c98ef210b8633"
}
variable "atlas_vpc_cidr" {
description = "Atlas CIDR"
default = "192.168.240.0/21"
}