diff --git a/README.md b/README.md
index 4f4d1e4..1737644 100644
--- a/README.md
+++ b/README.md
@@ -1659,10 +1659,14 @@ The benefits of Terraform over the other tools:
Explain each of the following:
- * Provider
- * Resource
- * Provisioner
-
+ * Provider:
+ * Resource:
+ * Provisioner:
+
+Provider
is any cloud based technology - github, aws, postgresql etc - which one can make an API call to with its unique terraform provider binary to provision available services and components.
+Resources
are the services and components you provision on these platforms.
+Provisioner
in terraform's lingo specifically refers to configuration tools like ansible or salt-stack which are used in combination with terraform to orchestrate a system e.g vm's
+
What terraform.tfstate
file is used for?
@@ -1673,10 +1677,10 @@ It keeps track of the IDs of created resources so that Terraform knows what it i
Explain what the following commands do:
- * terraform init
- * terraform plan
- * terraform validate
- * terraform apply
+ * terraform init
+ * terraform plan
+ * terraform validate
+ * terraform apply
terraform init
scans your code to figure which providers are you using and download them.