forked from shippableSamples/sample_infra_terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
43 lines (35 loc) · 839 Bytes
/
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
variable "key_name" {
description = "Name of the SSH keypair to use in AWS."
default = "aws-ssh-key"
}
variable "key_file_name" {
description = "Key Pair FileName used to login to the box"
}
variable "subnet_id" {
description = "Subnet ID to use in VPC"
}
variable "aws_region" {
description = "AWS region to launch servers."
default = "us-west-2"
}
variable "aws_access_key" {
decscription = "AWS Access Key"
}
variable "aws_secret_key" {
description = "AWS Secret Key"
}
variable "instance_type" {
description = "Instance type"
}
variable "instance_name" {
description = "Instance Name"
}
# Ubuntu Precise 12.04 LTS (x64)
variable "aws_amis" {
default = {
eu-west-1 = "ami-b1cf19c6"
us-east-1 = "ami-de7ab6b6"
us-west-1 = "ami-3f75767a"
us-west-2 = "ami-152bc275"
}
}