Skip to content

Commit

Permalink
OPS-6304 Fix dynamic blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov committed Oct 30, 2024
1 parent 480679a commit 26fe120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "aws_bedrock_custom_model" "this" {
}

dynamic "validation_data_config" {
for_each = var.training_data_s3_uri != null ? ["this"] : []
for_each = var.validation_data_s3_uri != null ? ["this"] : []
content {
validator {
s3_uri = var.validation_data_s3_uri
Expand Down

0 comments on commit 26fe120

Please sign in to comment.