forked from pmnathan/tfworkshopdemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (26 loc) · 1008 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
##############################################################################
# Variables File
#
# Here is where we store the default values for all the variables used in our
# Terraform code. If you create a variable with no default, the user will be
# prompted to enter it (or define it via config file or command line flags.)
variable "environment" {
description = "This environment for this stack"
default = "markb_demo"
}
variable "region" {
description = "The region where the resources are created."
default = "us-east-2"
}
variable "address_space" {
description = "The address space that is used by the virtual network. You can supply more than one address space. Changing this forces a new resource to be created."
default = "10.0.0.0/16"
}
variable "subnet_prefix" {
description = "The address prefix to use for the subnet."
default = "10.0.10.0/24"
}
variable "instance_type" {
description = "Specifies the AWS instance type."
default = "t2.micro"
}