-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
65 lines (42 loc) · 805 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
variable "access_key" {
}
variable "create_key_pair" {
description = "Controls if key pair should be created"
type = bool
default = true
}
variable "instance_name" {
}
variable "key_name" {
}
variable "public_key" {
}
variable "region" {
}
variable "secret_key" {
}
variable "server_type" {
}
variable "subnet_zone" {
}
variable "vpc_cidr_block" {
default = "10.0.0.0/16"
description = "CIDR Block for the VPC"
type = string
}
variable "class_name" {
}
variable "web_subnet" {
default = "10.0.10.0/24"
description = "Web Subnet"
type = string
}
variable "instance_count" {
default = 1
description = "Number of instances to provision"
type = number
}
variable "bucket_name" {
type = string
default = "Demo"
}