File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -202,19 +202,19 @@ resource "aws_elasticsearch_domain" "single" {
202
202
log_publishing_options {
203
203
enabled = var. log_publishing_index_enabled
204
204
log_type = " INDEX_SLOW_LOGS"
205
- cloudwatch_log_group_arn = format ( " %s:* " , join (" " , aws_cloudwatch_log_group. cloudwatch . * . arn ) )
205
+ cloudwatch_log_group_arn = join (" " , aws_cloudwatch_log_group. cloudwatch . * . arn )
206
206
}
207
207
208
208
log_publishing_options {
209
209
enabled = var. log_publishing_search_enabled
210
210
log_type = " SEARCH_SLOW_LOGS"
211
- cloudwatch_log_group_arn = format ( " %s:* " , join (" " , aws_cloudwatch_log_group. cloudwatch . * . arn ) )
211
+ cloudwatch_log_group_arn = join (" " , aws_cloudwatch_log_group. cloudwatch . * . arn )
212
212
}
213
213
214
214
log_publishing_options {
215
215
enabled = var. log_publishing_application_enabled
216
216
log_type = " ES_APPLICATION_LOGS"
217
- cloudwatch_log_group_arn = format ( " %s:* " , join (" " , aws_cloudwatch_log_group. cloudwatch . * . arn ) )
217
+ cloudwatch_log_group_arn = join (" " , aws_cloudwatch_log_group. cloudwatch . * . arn )
218
218
}
219
219
220
220
domain_endpoint_options {
You can’t perform that action at this time.
0 commit comments