@@ -211,6 +211,7 @@ resource "aws_dms_endpoint" "this" {
211
211
message_max_bytes = try (kafka_settings. value . message_max_bytes , null )
212
212
no_hex_prefix = try (kafka_settings. value . no_hex_prefix , null )
213
213
partition_include_schema_table = try (kafka_settings. value . partition_include_schema_table , null )
214
+ sasl_mechanism = try (kafka_settings. value . sasl_mechanism , null )
214
215
sasl_password = lookup (kafka_settings. value , " sasl_password" , null )
215
216
sasl_username = lookup (kafka_settings. value , " sasl_username" , null )
216
217
security_protocol = try (kafka_settings. value . security_protocol , null )
@@ -392,7 +393,8 @@ resource "aws_dms_replication_task" "this" {
392
393
replication_instance_arn = aws_dms_replication_instance. this [0 ]. replication_instance_arn
393
394
replication_task_id = each. value . replication_task_id
394
395
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 )
396
398
start_replication_task = try (each. value . start_replication_task , null )
397
399
table_mappings = try (each. value . table_mappings , null )
398
400
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