-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_variables.tf
83 lines (65 loc) · 2.39 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
variable "endpoint_type" {
description = "Endpoint type: `source` or `target`"
}
variable "engine_name" {
default = ""
description = "The type of engine for the endpoint. Can be one of aurora | aurora-postgresql| azuredb | db2 | docdb | dynamodb | elasticsearch | kafka | kinesis | mariadb | mongodb | mysql | oracle | postgres | redshift | s3 | sqlserver | sybase"
}
variable "kms_key_arn" {
default = ""
description = "KMS Key ARN to use a CMK instead of default shared key, when storage_encrypted is true"
}
variable "certificate_arn" {
description = "The Amazon Resource Name (ARN) for the certificate"
}
variable "server_name" {
description = "The host name of the server"
}
variable "database_name" {
description = "The name of the endpoint database"
}
variable "endpoint_id" {
description = "The database endpoint identifier"
}
variable "username" {
description = "The user name to be used to login to the endpoint database"
}
variable "password" {
description = "The password to be used to login to the endpoint database"
}
variable "port" {
description = "The port used by the endpoint database"
}
variable "extra_connection_attributes" {
description = "Additional attributes associated with the connection"
}
variable "ssl_mode" {
description = "The SSL mode to use for the connection. Can be one of none | require | verify-ca | verify-full"
default = "none"
}
variable "allocated_storage" {
description = "The amount of storage (in gigabytes) to be initially allocated for the replication instance"
type = number
default = 50
}
variable "engine_version" {
description = "The engine version number of the replication instance"
default = "none"
}
# variable "replication_instance_class" {
# description = "The compute and memory capacity of the replication instance as specified by the replication instance class"
# default = "none"
# }
# variable "replication_instance_id" {
# description = "The replication instance identifier"
# }
# variable "preferred_maintenance_window" {
# description = "The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC)"
# default = "none"
# }
# variable "availability_zone" {
# description = "The EC2 Availability Zone that the replication instance will be created in"
# }
# variable "subnet_ids" {
# description = "A list of the EC2 subnet IDs for the subnet group"
# }