-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
53 lines (44 loc) · 1.19 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
variable "certificate_arn" {
type = "string"
description = "Certificate for the load balancer."
default = ""
}
variable "protocol" {
type = "string"
description = "Protocol used by load balancer and target group."
default = "HTTP"
}
variable "load_balancer_interal" {
type = "string"
description = "Controls load balancer visibility."
default = true
}
variable "name" {
type = "string"
description = "Name of the project the network is being created for."
}
variable "app_port" {
type = "string"
description = "The port the app is running to which the load balancer is pointing."
}
variable "region" {
type = "string"
description = "The AWS region to use."
default = "us-east-1"
}
variable "security_group_id" {
type = "string"
description = "ID of security group for the load balancer."
}
variable "subnet_ids" {
type = "list"
description = "Subnet IDs for the load balancer."
}
variable "tags" {
type = "map"
description = "A map of tags to apply to all resources."
}
variable "vpc_id" {
type = "string"
description = "VPC with which to associate the target group with."
}