-
Notifications
You must be signed in to change notification settings - Fork 20
/
variables.tf
55 lines (46 loc) · 1.16 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
variable "access_key" {
description = "AWS access key."
}
variable "secret_key" {
description = "AWS secret key."
}
variable "allowed_network" {
description = "The CIDR of network that is allowed to access the bastion host"
}
variable "region" {
description = "The AWS region to create things in."
default = "us-west-2"
}
variable "key_name" {
description = "Name of the keypair to use in EC2."
default = "terraform"
}
variable "key_path" {
description = "Path to your private key."
default = "~/.ssh/id_rsa"
}
variable "amazon_amis" {
description = "Amazon Linux AMIs"
default = {
us-west-2 = "ami-b5a7ea85"
}
}
variable "amazon_nat_amis" {
description = "Amazon Linux NAT AMIs"
default = {
us-west-2 = "ami-bb69128b"
}
}
variable "centos7_amis" {
description = "CentOS 7 AMIs"
default = {
us-east-1 = "ami-96a818fe"
us-west-2 = "ami-c7d092f7"
us-west-1 = "ami-6bcfc42e"
eu-west-1 = "ami-e4ff5c93"
ap-southeast-1 = "ami-aea582fc"
ap-southeast-2 = "ami-bd523087"
ap-northeast-1 = "ami-89634988"
sa-east-1 = "ami-bf9520a2"
}
}