This repository has been archived by the owner on Oct 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
70 lines (55 loc) · 1.51 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
variable "project" {
default = "Unknown"
description = "Name of project for Tegola"
}
variable "environment" {
default = "Unknown"
description = "Name of environment Tegola is targeting"
}
variable "vpc_id" {
description = "ID of VPC meant to house the Lambda execution environment"
}
variable "subnet_ids" {
type = "list"
description = "A list of subnet IDs to launch function instances"
}
variable "log_group_retention_in_days" {
default = "30"
description = "CloudWatch Log group retention period in days"
}
variable "function_archive_path" {
description = "Local file system path for Tegola archive"
}
variable "function_timeout_in_sec" {
default = "10"
description = "Function timeout in seconds"
}
variable "function_memory_in_mb" {
default = "128"
description = "Function memory in megabytes"
}
variable "s3_cache_bucket" {
description = "S3 bucket used for Tegola caching"
}
variable "database_hostname" {
description = "PostGIS enabled PostgreSQL hostname"
}
variable "database_port" {
default = "5432"
description = "PostgreSQL port"
}
variable "database_name" {
description = "PostgreSQL database name"
}
variable "database_username" {
description = "PostgreSQL username"
}
variable "database_password" {
description = "PostgreSQL password"
}
variable "certificate_arn" {
description = "Amazon Resource Name for a TLS certificate to associate with API Gateway"
}
variable "domain_name" {
description = "Domain name to associate with API Gateway"
}