### Description Currently We can have ``` resource "aws_dynamodb_table" "this" { ............ ............ ............ replica{ region_name = .............. kms_key_arn = .................... point_in_time_recovery = ....... } ........ ............ ............ ............ } ``` Required Configuration ``` resource "aws_dynamodb_table" "this" { ............ replica{ region_name = .............. kms_key_arn = .................... point_in_time_recovery = ...... deletion_protection = ...... } ........ } ```