-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
86 lines (69 loc) · 1.77 KB
/
variables.tf
File metadata and controls
86 lines (69 loc) · 1.77 KB
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
variable "region" {
#type = "string"
description = "Region on AWS to Deploy"
}
variable "vpc_cidr" {
#type = "string"
description = "CIDR for the VPC"
}
variable "public_subnet_cidrs" {
#type = "list"
description = "CIDRs for the public subnets"
}
variable "private_subnet_cidrs" {
#type = "list"
description = "CIDRs for the private subnets"
}
variable "instance_type" {
#type = "string"
description = "Instance type EC2 AWS"
}
variable "min_size" {
description = "min_size of instances on aws_launch_configuration"
}
variable "desired_capacity" {
description = "desired_capacity of instances on aws_launch_configuration"
}
variable "max_size" {
description = "max_size of instances on aws_launch_configuration"
}
variable "public_elb_name" {
#type = "string"
description = "Is the name of security groups of public_subnet"
}
variable "private_elb_name" {
#type = "string"
description = "Is the name of security groups of private_subnet"
}
variable "public_sg_name" {
#type = "string"
description = "Is the name of security groups of public_subnet"
}
variable "public_sg_ingress" {
#type = "list"
description = "Ingress Rules to public_subnet"
}
variable "public_sg_egress" {
#type = "list"
description = "Egress Rules to public_subnet"
}
variable "private_sg_name" {
#type = "string"
description = "Is the name of security groups of private_subnet"
}
variable "private_sg_ingress" {
#type = "list"
description = "Ingress Rules to private_subnet"
}
variable "private_sg_egress" {
#type = "list"
description = "Egress Rules to public_subnet"
}
variable "function_name_public" {
#type = "string"
description = "Name of public lambda"
}
variable "function_name_private" {
#type = "string"
description = "Name of private lambda"
}