-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
99 lines (80 loc) · 2.09 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
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
94
95
96
97
98
99
variable route53_zone_id {
description = "AWS Route53 Zone ID to create the entry"
type = string
}
variable route53_record_name {
description = "AWS Route53 record name"
type = string
}
variable evaluate_target_health {
description = "AWS Route53 Evaluate Target flag"
type = bool
default = false
}
variable port {
description = "Instance port"
type = string
}
variable vpc_id {
description = "VPC ID to place AWS ALB"
type = string
}
variable alb_slow_start {
description = "AWS ALB Slow Start flag"
default = 120
}
variable health_check_path {
description = "AWS ALB Health Check Path"
}
variable health_check_protocol {
description = "AWS ALB Health Check protocol"
default = "HTTP"
}
variable alb_deregistration_delay {
description = "AWS ALB Deregistration Delay flag"
default = 30
}
variable tags {
description = "A mapping of tags to assign to the resource"
type = map(string)
}
variable whitelisted_ips {
description = "List of whitelisted ips to be added to security group"
type = list(string)
}
variable vpc_public_subnets {
description = "A mapping with VPC public subnets"
type = list(string)
}
variable certificate_arn {
description = "Certificate ARN to assign to ALB listener"
type = string
}
variable oidc_authorization_endpoint {
description = "Authorization endpoint from Okta application"
type = string
}
variable oidc_client_id {
description = "OIDC Client ID from Okta application"
type = string
}
variable oidc_client_secret {
description = "OIDC client secret from Okta application"
type = string
}
variable oidc_issuer {
description = "OIDC issuer from Okta application"
type = string
}
variable oidc_token_endpoint {
description = "OIDC token endpoint from Okta application"
type = string
}
variable oidc_user_info_endpoint {
description = "OIDC user info endpoint from Okta application"
type = string
}
variable oidc_session_timeout {
description = "OIDC session timeout"
default = 300
}