generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
91 lines (76 loc) · 2.23 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
# Global terraform vars
variable "aws_region" {
description = "The AWS region to deploy to (e.g. us-east-1)"
type = string
}
variable "resource_prefix" {
description = "Prefix of webhook proxy resources"
type = string
default = "gwp"
}
variable "custom_tags" {
type = map(string)
description = "Additional tags to be applied to all resources applied by this module."
default = {}
}
variable "log_retention_days" {
description = "Number of days CloudWatch will retain logs"
type = number
default = 7
}
variable "lambda_timeout_seconds" {
description = "Number of seconds until lambda times out"
type = number
default = 10
}
// https://docs.github.com/en/enterprise-cloud@latest/admin/identity-and-access-management/using-enterprise-managed-users-and-saml-for-iam/about-enterprise-managed-users
variable "enterprise_managed_user_suffix" {
description = "Managed user suffix used for central identity management on GHEC"
type = string
default = ""
}
variable "enterprise_slug" {
description = "The name (slug) of the enterprise on GHEC"
type = string
}
variable "lambda_bucket_name" {
description = "S3 bucket with lambda and layer archives"
type = string
}
variable "lambda_layer_arn" {
description = "Lambda layer ARN for data store"
type = string
}
variable "extra_role_policy" {
description = "jsonencoded string policy to include in the proxy lambda role"
type = string
default = null
}
variable "vpc_id" {
description = "VPC id for Lambda VPC config"
type = string
}
variable "subnet_ids" {
description = "subnet_ids for Lambda VPC config"
type = list(string)
}
variable "api_gateway_domain_name" {
description = "Domain name for API gateway domain mapping"
type = string
default = null
}
variable "route_53_record_name" {
description = "Record name for Route 53 record creation"
type = string
default = null
}
variable "certificate_arn" {
description = "Certificate ARN for API gateway domain name"
type = string
default = null
}
variable "zone_id" {
description = "Zone id for Route53 record"
type = string
default = null
}