diff --git a/topics/terraform/README.md b/topics/terraform/README.md
index 9457d117c..82ae958ec 100644
--- a/topics/terraform/README.md
+++ b/topics/terraform/README.md
@@ -1442,6 +1442,16 @@ In addition, modules are great for creating reusable Terraform code that can be
+
+
+
+What is a remote backend in Terraform?
+
+A remote backend stores Terraform state in a remote location (e.g., S3, Azure Blob, GCS, Terraform Cloud) instead of locally.
+It enables collaboration, team access, and state locking to prevent conflicts during concurrent operations.
+
+
+
What makes a Terraform code module? In other words, what a module is from practical perspective?