-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (57 loc) · 1.5 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
60
61
variable "lb_type" {
description = "(Required) Load Balancer Type. Acceptable Values: <application or network>"
type = string
default = "application"
}
variable "lb_protocol" {
description = "Load Balancer Protocol. Acceptable Values: <HTTP, HTTPS, TCP, TLS>"
type = string
default = "HTTP"
}
variable "priority" {
description = "Load Balancer Priority. Acceptable Values: <1-100>"
type = string
default = ""
}
variable "vpc_id" {
description = "(Required) VPC ID"
type = string
}
variable "private_subnets" {
description = "(Required) Private Subnets"
type = list(any)
}
variable "alb_sg_id" {
description = "(Required) ALB Security Group ID"
}
variable "cluster_id" {
description = "(Required) Cluster ID"
}
variable "image_url" {
type = string
}
variable "project_name" {
}
variable "env" {
type = string
}
variable "aws_region" {
type = string
}
variable "arn_loadbalancer" {
description = "(Required) arn_loadbalancer"
}
variable "listener_arn" {
description = "(Required) listener_arn"
}
variable "internal" {
description = "(Optional) [Load Balancer] Describe if the Load Balancer exposal. Acceptable Values: <true or false> for internal or internet-facing, respectively"
default = false
}
variable "domain_name" {
description = "(Optional) [Load Balancer] Domain Name"
type = string
}
variable "namespace_id" {
description = "name space id Cloudmap"
}