File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,11 @@ resource "aws_opensearch_domain" "this" {
224
224
}
225
225
}
226
226
227
+ timeouts {
228
+ create = try (var. timeouts . create , null )
229
+ delete = try (var. timeouts . delete , null )
230
+ }
231
+
227
232
tags = local. tags
228
233
}
229
234
Original file line number Diff line number Diff line change @@ -139,6 +139,12 @@ variable "vpc_options" {
139
139
default = {}
140
140
}
141
141
142
+ variable "timeouts" {
143
+ description = " Create and delete timeout configurations for the domain"
144
+ type = map (string )
145
+ default = {}
146
+ }
147
+
142
148
# ###############################################################################
143
149
# Package Association(s)
144
150
# ###############################################################################
You can’t perform that action at this time.
0 commit comments