-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
38 lines (33 loc) · 974 Bytes
/
variables.tf
File metadata and controls
38 lines (33 loc) · 974 Bytes
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
variable "public_key_path" {
description = <<DESCRIPTION
Path to the SSH public key to be used for authentication.
Ensure this keypair is added to your local SSH agent so provisioners can
connect.
Example: ~/.ssh/terraform.pub
DESCRIPTION
}
variable "key_name" {
description = "Desired name of AWS key pair"
}
variable "aws_region" {
description = "AWS region to launch servers."
default = "eu-west-1"
}
variable "certificate" {
desription = "ssl cert for the elb"
default = "arn:aws:acm:eu-west-1:796735346424:certificate/9a61f2df-9711-44c0-a099-8f4af3d41322"
}
# Ubuntu Precise 12.04 LTS (x64)
# ami-70b59203 is the official ubuntu hvm ami
variable "aws_amis" {
default = {
#eu-west-1 = "ami-b1cf19c6"
eu-west-1 = "ami-70b59203"
us-east-1 = "ami-de7ab6b6"
us-west-1 = "ami-3f75767a"
us-west-2 = "ami-21f78e11"
}
}
variable "deployment_id" {
description = "the deployment id that will used to name infra artefacts"
}