-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
44 lines (36 loc) · 951 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
44
variable "vpc_cidr_block" {
description = "VPC IP block"
default = "10.0.0.0/16"
}
variable "subnet_cidr_block" {
description = "Subnet IP block"
default = "10.0.0.0/24"
}
variable "instance_type" {
description = "Instance type (m3.medium, c4.large, etc.)"
default = "m3.medium"
}
variable "release" {
description = "Ubuntu Release (precise, trusty, xenial, etc.)"
default = "trusty"
}
variable "virtualization_type" {
description = "Virtualization type (hvm or paravirtual)"
default = "hvm"
}
variable "root_device_type" {
description = "Root volume type (instance-store or ebs)"
default = "instance-store"
}
variable "instance_count" {
description = "Number of instances to launch"
default = "1"
}
variable "key_name" {
description = "Name of AWS keypair"
type = "string"
}
variable "region" {
description = "Name of AWS region to launch in"
default = "us-west-1"
}