@@ -211,6 +211,7 @@ resource "aws_dms_endpoint" "this" {
211211 message_max_bytes = try (kafka_settings. value . message_max_bytes , null )
212212 no_hex_prefix = try (kafka_settings. value . no_hex_prefix , null )
213213 partition_include_schema_table = try (kafka_settings. value . partition_include_schema_table , null )
214+ sasl_mechanism = try (kafka_settings. value . sasl_mechanism , null )
214215 sasl_password = lookup (kafka_settings. value , " sasl_password" , null )
215216 sasl_username = lookup (kafka_settings. value , " sasl_username" , null )
216217 security_protocol = try (kafka_settings. value . security_protocol , null )
@@ -392,7 +393,8 @@ resource "aws_dms_replication_task" "this" {
392393 replication_instance_arn = aws_dms_replication_instance. this [0 ]. replication_instance_arn
393394 replication_task_id = each. value . replication_task_id
394395 replication_task_settings = try (each. value . replication_task_settings , null )
395- source_endpoint_arn = try (each. value . source_endpoint_arn , aws_dms_endpoint. this [each . value . source_endpoint_key ]. endpoint_arn , aws_dms_s3_endpoint. this [each . value . source_endpoint_key ]. endpoint_arn )
396+ resource_identifier = try (each. value . resource_identifier , null )
397+ source_endpoint_arn = try (aws_dms_endpoint. this [each . value . source_endpoint_key ]. endpoint_arn , aws_dms_s3_endpoint. this [each . value . source_endpoint_key ]. endpoint_arn )
396398 start_replication_task = try (each. value . start_replication_task , null )
397399 table_mappings = try (each. value . table_mappings , null )
398400 target_endpoint_arn = try (each. value . target_endpoint_arn , aws_dms_endpoint. this [each . value . target_endpoint_key ]. endpoint_arn , aws_dms_s3_endpoint. this [each . value . target_endpoint_key ]. endpoint_arn )
0 commit comments