Skip to content

Commit 18c66bb

Browse files
authored
Merge pull request #1 from trandafo/trandafo-patch-1
Fix runtime configuration for EMR Serverless
2 parents f7d37e7 + 0848175 commit 18c66bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/serverless/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ resource "aws_emrserverless_application" "this" {
164164
}
165165

166166
dynamic "runtime_configuration" {
167-
for_each = var.runtime_configuration != null ? [var.runtime_configuration] : []
167+
for_each = var.runtime_configuration != null ? var.runtime_configuration : []
168168

169169
content {
170170
classification = runtime_configuration.value.classification

0 commit comments

Comments
 (0)