-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (40 loc) · 936 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
variable "ami" {
default = "ami-04b9e92b5572fa0d1"
description = "Amazon Machine Image ID"
}
variable "diskgb" {
default = "8"
description = "Root volume size (GB)"
}
variable "ec2type" {
default = "t3.micro"
description = "EC2 instance type"
}
variable "name" {
default = "ec2box"
description = "Name tag for resources"
}
variable "install" {
default = "etc/install"
description = "Path to install script"
}
variable "launch" {
default = "etc/launch"
description = "Path to launch script"
}
variable "policy" {
default = "etc/policy.json"
description = "Path to IAM policy JSON file"
}
variable "public_key" {
default = "etc/ec2box_rsa.pub"
description = "Path to public SSH key"
}
variable "template" {
default = "etc/template"
description = "Path to cloud-init template file"
}
variable "user" {
default = "ubuntu"
description = "Launch as this user"
}