forked from jitsecurity/mongodb-atlas-aws-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars
31 lines (28 loc) · 1.04 KB
/
terraform.tfvars
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
org_id = "YOUR_ORG_ID"
instances = ["my-instance"]
enable_continuous_backup = false
enable_termination_protection = true
enable_cloudformation_atlas_resources = false
stage = "test"
security = {
aws_vpc_id : "vpc-xxxxxxx",
private_subnet_ids : ["subnet-aaa", "subnet-bbb"],
aws_allowed_access_security_groups : ["sg-xxxxxx"],
ip_whitelist : [
{
cidr : "1.1.1.1/32",
description : "my IP"
}
]
}
data_api_configurations = {
jwt_audience : "aud",
jwt_public_key : "-----BEGIN PUBLIC KEY-----\nXXXX\nYYY\n-----END PUBLIC KEY-----\n",
tenant_id_field_in_jwt : "tenantId",
display_name_field_in_jwt : "sub",
add_mongo_ips_access_to_data_api : true
}
alerts = {
email_notification : "[email protected]",
daily_price_threshold_alert : 10
}