I successfully applied my basic configuration for AWS using Terraform (added a DynamoDB table):
terraform init
terraform apply -auto-approve
After I updated files by adding new resources and ran apply again, I got an error that Dynamo table already exists:
* aws_dynamodb_table.my-table: error creating DynamoDB Table: ResourceInUseException: Table already exists: my-table
How can I avoid replacing existing resources?