-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvariables.tf
45 lines (39 loc) · 1.18 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
variable "base_bucket" {
description = "S3 bucket for storing terraform state, ssh pub keys, etc"
default = "moz-devservices"
}
variable "logging_bucket" {
description = "S3 bucket for activity logging"
default = "moz-devservices-logging"
}
variable "centos7_amis" {
description = "Centos 7 (x86_64) with Updates HVM, rel 02/26/2016"
type = "map"
default = {
us-east-1 = "ami-6d1c2007"
us-west-1 = "ami-af4333cf"
us-west-2 = "ami-d2c924b2"
}
}
variable "vpc_map" {
description = "Map of VPCs and CIDR blocks"
type = "map"
default = {
use1_default = "172.31.0.0/16"
usw2_default = "172.31.0.0/16"
treeherder-vpc = "10.191.3.0/24"
}
}
variable "user_data_scripts" {
description = "List of user-data scripts to manage in S3 bucket"
default = "associate-eip,attach-vol,set_sysctl"
# ssh-pubkeys.tmpl handled via template_file resource in base/s3.tf
}
variable "pubkey_bucket_prefix" {
description = "S3 bucket prefix for pubkeys in base_bucket"
default = "pubkeys"
}
variable "ssh_key_names" {
description = "List of SSH pub keys to manage in S3 bucket"
default = "bjones,dhouse"
}