-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
35 lines (30 loc) · 828 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
variable "env" {
description = "Development? Staging? Production? Dinosaur?"
type = string
default = "demonstration"
}
variable "project" {
description = "This is so we can check the Tags to match this places."
type = string
default = "ec2_server_demo"
}
variable "region" {
description = "Region that we will use on AWS"
type = string
default = "us-west-1"
}
variable "instance_type" {
description = "How much Money do you want to spend? A.K.A. EC2 Instance Size?"
type = string
default = "t2.micro"
}
variable "key_file" {
description = "How much Money do you want to spend? A.K.A. EC2 Instance Size?"
type = string
default = "key_file"
}
variable "cidr_block" {
description = "Base CIDR Block to use for VPC"
type = string
default = "10.0.0.0/16"
}