-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
48 lines (45 loc) · 966 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
variable "region" {
type = string
description= "Region Selection"
default = "us-east-1"
}
variable "zone_a" {
type = string
description= "Region Selection"
default = "us-east-1a"
}
variable "vpccidr" {
type = string
description = "CIDR for the VPC"
default = "172.100.0.0/16"
}
variable "publicsubnetcidr" {
type = string
description = "CIDR for the public subnet"
default = "172.100.1.0/24"
}
variable "instance_size" {
type = string
description = "Instance Selection"
default = "t3.micro"
}
variable "availability_zone" {
type = string
description = "Zone Selection"
default = "us-east-1a"
}
variable "ami" {
type = string
description = "ami Selection"
default = "ami-052efd3df9dad4825"
}
variable "instance_type" {
type = string
description = "instance Selection"
default = "t2.micro"
}
variable "key" {
type = string
description = "ikey"
default = "Test"
}