forked from RiotGames/key-conjurer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tfvars
45 lines (36 loc) · 878 Bytes
/
example.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
32
33
34
35
36
37
38
39
40
41
42
43
settings = {
account_number = "<aws account number>"
region = "us-west-2"
s3_bucket = "<example-tf-bucket>"
vpc_id = "<vpc-id>"
owner = "<email>"
accounting = "<internal group name>"
fe_bucket_name = "<bucket for frontend CDN>"
}
frontend_certs = {
<workspace name> = "<arn of ACM certificate for frontend domain>"
}
api_certs = {
<workspace name> = "<arn of ACM certificate for api domain>"
}
frontend_domains = {
<workspace name> = ["keyconjurer.example.com"]
}
api_domains = {
<workspace name> = "api.keyconjurer.example.com"
}
vpc_config = {
subnets = [
"<vpc subnet id>",
...]
cidrs = ["0.0.0.0/0"]
}
tags = {
Accounting = "<internal group name>"
Name = "<deployment name>"
Owner = "<email>"
}
lambda_env = {
EncryptedSettings = "<kms encrypted json blob to be used in the Go settings struct>"
AWSRegion = "us-west-2"
}