-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (37 loc) · 905 Bytes
/
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
variable "api_name" {
type = string
description = "Name for the Webhook API Gateway"
}
variable "api_description" {
type = string
description = "API Description"
default = "GitHub Webhook Endpoint"
}
variable "api_log_group" {
type = string
description = "CloudWatch Log Group for the API"
}
variable "api_domain" {
type = string
description = "Route53 Domain Name"
}
variable "api_subdomain" {
type = string
description = "Route53 Record Name"
}
variable "api_zone_id" {
type = string
description = "Route53 Zone ID"
}
variable "api_certificate_arn" {
type = string
description = "Valid ACM Certificate arn for {subdomain}.{domain}"
}
variable "table_name" {
type = string
description = "DynamoDB Table Name"
}
variable "log_retention" {
type = number
description = "Log Retention in Days"
}