This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathvariables.tf
65 lines (57 loc) · 1.89 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
variable "aws_region" {
description = "AWS region to launch servers."
default = "us-east-1"
}
# Ubuntu 14.04 LTS (x64)
variable "aws_amis" {
default = {
us-east-1 = "ami-fce3c696"
admin-node-2016-07-15 = "ami-68d8557f"
debian-jessie-8-4 = "ami-45374b25"
us-east-1-ubuntu-16-04 = "ami-80861296"
jenkins-2017-10-04 = "ami-9f1bdee5"
bitergia-2017-10-16 = "ami-80b381e0"
bitergia-2018-10-01 = "ami-0f0674cb683fcc1f7"
}
}
variable "ips" {
default = {
yousef = "86.27.78.158/32"
}
}
variable "aws_availibility_zones" {
default = {
us-east-1 = "us-east-1a,us-east-1c,us-east-1d"
eu-west-1 = "eu-west-1a,eu-west-1b,eu-west-1c"
}
}
variable "aws_account_id" {
default = "484535289196"
}
variable "paas-mozilla-community-zone-id" {
default = "Z1BZGUW286G7FF"
}
variable "ssl_certificates" {
type = "map"
default = {
community-sites-elb-us-east-1 = "arn:aws:acm:us-east-1:484535289196:certificate/6883a4b5-cc8d-4821-a8db-69fa5fc65e02"
mozilla-org-elb-us-east-1 = "arn:aws:acm:us-east-1:484535289196:certificate/de82613d-339e-4b8c-88ee-f81ea8c106cc"
mesos-elb-us-east-1 = "arn:aws:acm:us-east-1:484535289196:certificate/b8dca075-66a1-48fc-9223-f753a504b4f2"
analytics-us-west-1 = "arn:aws:acm:us-west-1:484535289196:certificate/b09c28f0-a98e-409c-b614-be356e9c593c"
roadshow-rustbr-org-us-east-1 = "arn:aws:acm:us-east-1:484535289196:certificate/1e3144e9-a472-4be5-93d9-eceb0d21b2bf"
livro-rustbr-org-us-east-1 = "arn:aws:acm:us-east-1:484535289196:certificate/306f084e-d312-45f2-939b-6b8ef2b51f4e"
}
}
variable "unmanaged_role_ids" {
type = "map"
default = {
admin-ec2-role = "AROAJQQ4P767MJJUWKKVK"
InfosecSecurityAuditRole = "AROAJHELZZZIXWALL3AVS"
}
}
variable "unmanaged_role_arns" {
type = "map"
default = {
mozdef-logging = "arn:aws:iam::484535289196:policy/SnsMozdefLogsFullAccess"
}
}