Skip to content

Commit 11f446f

Browse files
fix: Usage of managed streaming kafka credentials (#162)
Co-authored-by: Anton Babenko <[email protected]>
1 parent 0fd0187 commit 11f446f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,8 +711,8 @@ resource "aws_pipes_pipe" "this" {
711711
for_each = try([managed_streaming_kafka_parameters.value.credentials], [])
712712

713713
content {
714-
client_certificate_tls_auth = credentials.value.client_certificate_tls_auth
715-
sasl_scram_512_auth = credentials.value.sasl_scram_512_auth
714+
client_certificate_tls_auth = try(credentials.value.client_certificate_tls_auth, null)
715+
sasl_scram_512_auth = try(credentials.value.sasl_scram_512_auth, null)
716716
}
717717
}
718718
}

0 commit comments

Comments
 (0)