-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
40 lines (33 loc) · 1017 Bytes
/
variables.tf
File metadata and controls
40 lines (33 loc) · 1017 Bytes
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
variable "vpc_subnet_ids" {
type = list(string)
description = "Subnet IDs for Lambda to run within the VPC"
}
variable "vpc_id" {
type = string
description = "VPC ID for Lambda security group"
}
variable "name" {
type = string
description = "Prefixing name for the Lambda function and associated resources"
}
variable "target_group_arn" {
type = string
description = "ARN of the target group to update with Aurora endpoints IP addresses"
}
variable "target_port" {
type = string
description = "Port on which the target group is listening"
}
variable "type" {
type = string
description = "Type of the target group, either 'reader' or 'writer'"
}
variable "identifier" {
type = string
description = "ID of the Aurora cluster to fetch IP addresses from, or instance identifier for IDS instance"
}
variable "tags" {
type = map(string)
description = "Tags to apply to all resources created by this module"
default = {}
}