You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_access_tags"></a> [access\_tags](#input\_access\_tags)| The list of access tags associated with the Event Steams instance. |`list(string)`|`[]`| no |
30
30
| <aname="input_cbr_rules"></a> [cbr\_rules](#input\_cbr\_rules)| The list of context-based restriction rules to create. | <pre>list(object({<br/> description = string<br/> account_id = string<br/> rule_contexts = list(object({<br/> attributes = optional(list(object({<br/> name = string<br/> value = string<br/> }))) }))<br/> enforcement_mode = string<br/> }))</pre> |`[]`| no |
31
+
| <aname="input_create_timeout"></a> [create\_timeout](#input\_create\_timeout)| The timeout value for creating an Event Streams instance. Specify `3h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. Add 30 min for each level of non-default storage size. |`string`|`"3h"`| no |
32
+
| <aname="input_delete_timeout"></a> [delete\_timeout](#input\_delete\_timeout)| The timeout value for deleting an Event Streams instance. |`string`|`"15m"`| no |
31
33
| <aname="input_es_name"></a> [es\_name](#input\_es\_name)| The name of the Event Streams instance. |`string`| n/a | yes |
32
34
| <aname="input_kms_key_crn"></a> [kms\_key\_crn](#input\_kms\_key\_crn)| The root key CRN of the key management service (Key Protect or Hyper Protect Crypto Services) to use to encrypt the payload data. |`string`| n/a | yes |
33
35
| <aname="input_metrics"></a> [metrics](#input\_metrics)| Enhanced metrics to activate, as list of strings. Allowed values: 'topic', 'partition', 'consumers'. |`list(string)`|`[]`| no |
@@ -43,6 +45,7 @@ No resources.
43
45
| <aname="input_skip_kms_iam_authorization_policy"></a> [skip\_kms\_iam\_authorization\_policy](#input\_skip\_kms\_iam\_authorization\_policy)| Set to true to skip the creation of an IAM authorization policy that permits all Event Streams database instances in the resource group to read the encryption key from the KMS instance. If set to false, pass in a value for the KMS instance in the kms\_key\_crn variable. In addition, no policy is created if var.kms\_encryption\_enabled is set to false. |`bool`|`false`| no |
44
46
| <aname="input_tags"></a> [tags](#input\_tags)| The list of tags associated with the Event Steams instance. |`list(string)`|`[]`| no |
45
47
| <aname="input_topics"></a> [topics](#input\_topics)| The list of topics to apply to resources. Only one topic is allowed for Lite plan instances. | <pre>list(object(<br/> {<br/> name = string<br/> partitions = number<br/> config = map(string)<br/> }<br/> ))</pre> |`[]`| no |
48
+
| <aname="input_update_timeout"></a> [update\_timeout](#input\_update\_timeout)| The timeout value for updating an Event Streams instance. Specify `1h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. A 30 min for each level of non-default storage size. |`string`|`"1h"`| no |
Copy file name to clipboardexpand all lines: modules/fscloud/variables.tf
+18
Original file line number
Diff line number
Diff line change
@@ -162,3 +162,21 @@ variable "mirroring" {
162
162
})
163
163
default=null
164
164
}
165
+
166
+
variable"create_timeout" {
167
+
type=string
168
+
description="The timeout value for creating an Event Streams instance. Specify `3h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. Add 30 min for each level of non-default storage size."
169
+
default="3h"
170
+
}
171
+
172
+
variable"update_timeout" {
173
+
type=string
174
+
description="The timeout value for updating an Event Streams instance. Specify `1h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. A 30 min for each level of non-default storage size."
175
+
default="1h"
176
+
}
177
+
178
+
variable"delete_timeout" {
179
+
type=string
180
+
description="The timeout value for deleting an Event Streams instance."
description="The timeout value for creating an Event Streams instance. Specify `3h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. Add 30 min for each level of non-default storage size."
259
+
default="3h"
260
+
}
261
+
262
+
variable"update_timeout" {
263
+
type=string
264
+
description="The timeout value for updating an Event Streams instance. Specify `1h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. A 30 min for each level of non-default storage size."
265
+
default="1h"
266
+
}
267
+
268
+
variable"delete_timeout" {
269
+
type=string
270
+
description="The timeout value for deleting an Event Streams instance."
0 commit comments