-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
59 lines (50 loc) · 1.25 KB
/
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
variable "inst_type" {
description = "Enter the EC2 Instance Type:"
type = string
default = "t3.micro"
}
variable "inst_name" {
description = "Enter a name for this EC2 Instance:"
type = string
default = "svr01"
}
variable "proj_name" {
description = "Enter a name for this EC2 Instance:"
type = string
default = "pulsiot"
}
variable "env_name" {
description = "Enter a name for this EC2 Instance:"
type = string
default = "dev"
}
variable "key_pair" {
description = "Enter the name of Key Pair which you want to use with this EC2 Instance:"
type = string
default = "anish"
}
variable "ami_id" {
description = "Enter the AMI Image ID to use with this EC2 Instance:"
type = string
default = "ami-0c6a6b0e75b2b6ce7"
}
variable "vpc_id" {
description = "Enter the VPC ID:"
type = string
default = "vpc-367ecb5d"
}
variable "cidr_blocks" {
description = "Enter the IPv4 CIDR block:"
type = list(any)
default = ["0.0.0.0/0"]
}
variable "ipv6_cidr_blocks" {
description = "Enter the IPv6 CIDR block:"
type = list(any)
default = ["::/0"]
}
variable "security_groups" {
#type = any
type = list(any)
default = null
}