-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
65 lines (53 loc) · 1.38 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
variable "target_dynamodb_table_name" {
type = string
description = "Target DynamoDB Table name"
}
variable "target_region" {
type = string
description = "The region for the target DynamoDB table"
}
variable "target_account" {
type = string
description = "Target AWS Account Number"
}
variable "target_role_arn" {
type = string
description = "Target IAM Role name to be assumed by Lambda function and a Glue job"
}
variable "source_table_stream_arn" {
type = string
description = "Source Dynamo DB table stream ARN"
}
variable "source_table_name" {
type = string
description = "Source Dynamo DB table name"
}
variable "tags" {
type = map(string)
description = "A map of tags to assign to the resource."
}
variable "enabled" {
type = bool
default = false
description = "Indicates if the replication is enabled"
}
variable "namespace" {
type = string
description = "Namespace this resources belong to"
}
variable "stage" {
type = string
description = "Deployment stage"
}
variable "stage_type" {
type = string
description = "Deployment stage type"
}
variable "initial_load_subnet" {
type = string
description = "Subnet for the initial load ECS task"
}
variable "initial_load_sg" {
type = string
description = "Security group for the initial load ECS task"
}