We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fd0187 commit 11f446fCopy full SHA for 11f446f
main.tf
@@ -711,8 +711,8 @@ resource "aws_pipes_pipe" "this" {
711
for_each = try([managed_streaming_kafka_parameters.value.credentials], [])
712
713
content {
714
- client_certificate_tls_auth = credentials.value.client_certificate_tls_auth
715
- sasl_scram_512_auth = credentials.value.sasl_scram_512_auth
+ client_certificate_tls_auth = try(credentials.value.client_certificate_tls_auth, null)
+ sasl_scram_512_auth = try(credentials.value.sasl_scram_512_auth, null)
716
}
717
718
0 commit comments