-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
94 lines (94 loc) · 3.03 KB
/
variables.tf
File metadata and controls
94 lines (94 loc) · 3.03 KB
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
84
85
86
87
88
89
90
91
92
93
94
variable "name" {
type = string
description = "The name to apply to the database resource."
}
variable "comment" {
type = string
description = "A comment to add to the database resource."
default = "Created by Terraform."
}
variable "data_retention_time_in_days" {
type = string
description = "Days to retain deleted data for. Default is 1"
default = 1
}
variable "attach_grant_usage" {
type = bool
description = "Create the grant usage at the same time. (true|false)"
default = false
}
variable "usage_roles" {
type = list(string)
description = "A list of roles that will be granted usage on the database."
default = []
}
variable "usage_shares" {
type = list(string)
description = "A list of roles that will be granted usage on the database shares."
default = []
}
variable "usage_with_grant_option" {
type = bool
description = "When this is set to true, allows the recipient role to grant the privileges to other roles."
default = false
}
variable "attach_grant_modify" {
type = bool
description = "Create the grant modify at the same time. (true|false)"
default = false
}
variable "modify_roles" {
type = list(string)
description = "A list of roles that will be granted modify on the database."
default = []
}
variable "modify_shares" {
type = list(string)
description = "A list of roles that will be granted modify on the database shares."
default = []
}
variable "modify_with_grant_option" {
type = bool
description = "When this is set to true, allows the recipient role to grant the privileges to other roles."
default = false
}
variable "attach_grant_create_schema" {
type = bool
description = "Create the grant create_schema at the same time. (true|false)"
default = false
}
variable "create_schema_roles" {
type = list(string)
description = "A list of roles that will be granted create_schema on the database."
default = []
}
variable "create_schema_shares" {
type = list(string)
description = "A list of roles that will be granted create_schema on the database shares."
default = []
}
variable "create_schema_with_grant_option" {
type = bool
description = "When this is set to true, allows the recipient role to grant the privileges to other roles."
default = false
}
variable "attach_grant_monitor" {
type = bool
description = "Create the grant monitor at the same time. (true|false)"
default = false
}
variable "monitor_roles" {
type = list(string)
description = "A list of roles that will be granted monitor on the database."
default = []
}
variable "monitor_shares" {
type = list(string)
description = "A list of roles that will be granted monitor on the database shares."
default = []
}
variable "monitor_with_grant_option" {
type = bool
description = "When this is set to true, allows the recipient role to grant the privileges to other roles."
default = false
}