-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
36 lines (30 loc) · 881 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
variable "rds_name" {
description = "The Name of the Tenant to embed in resouces"
type = string
}
variable "rds_cluster_name" {
description = "The shared DB cluster that this tenant runs on"
type = string
}
variable "rds_cluster_port" {
description = "The shared DB cluster port that this tenant runs on"
type = string
}
variable "rds_cluster_host" {
description = "The shared DB cluster DNS hostname that this tenant runs on"
type = string
}
variable "default_character_set" {
description = "The default character set to apply to the schema"
type = string
default = "utf8"
}
variable "default_collation" {
description = "The default collation to apply to the schema"
type = string
default = "utf8_general_ci"
}
variable "tags" {
description = "default map of tags"
type = map(string)
}