-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.tf
93 lines (67 loc) · 1.63 KB
/
variable.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
variable "vpc-cidr" {
default = "10.0.0.0/16"
description = "VPC CIDR BLOCK"
type = string
}
variable "Public_Subnet_1" {
default = "10.0.0.0/24"
description = "Public_Subnet_1"
type = string
}
variable "Public_Subnet_2" {
default = "10.0.1.0/24"
description = "Public_Subnet_2"
type = string
}
variable "Private_Subnet_1" {
default = "10.0.2.0/24"
description = "Private_Subnet_1"
type = string
}
variable "Private_Subnet_2" {
default = "10.0.3.0/24"
description = "Private_Subnet_2"
type = string
}
variable "Private_Subnet_3" {
default = "10.0.4.0/24"
description = "Private_Subnet_3"
type = string
}
variable "Private_Subnet_4" {
default = "10.0.5.0/24"
description = "Private_Subnet_5"
type = string
}
variable "ssh-location" {
default = "0.0.0.0/0"
description = "SSH variable for bastion host"
type = string
}
variable "SSL-certificate" {
default = "arn:aws:acm:eu-central-1:027619007323:certificate/0283ba8d-d3bf-4d94-9642-0d663f8f54ad"
description = "SSL-certificate"
type = string
}
variable "route53_hosted_zone_name" {
default = "awsclouddemo.tk"
description = "domain name"
type = string
}
variable "generated_key_name" {
type = string
default = "terraform-key-pair"
description = "Key-pair generated by Terraform"
}
variable "region" {
type = string
default = "eu-central-1"
}
variable "instance_type" {
type = string
default = "t2.micro"
}
variable "s3_bucket_name" {
type = string
default = "coffee-shop-demo-4"
}