From 85d9ce12af1e0b72ceec15badd661f91202700f5 Mon Sep 17 00:00:00 2001 From: Samuel Nwoye Date: Tue, 26 Nov 2019 13:42:57 +0100 Subject: [PATCH] Correction on the area answered questions on. --- README.md | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 04d5471..c918966 100644 --- a/README.md +++ b/README.md @@ -1609,10 +1609,13 @@ The benefits of Terraform over the other tools:
Explain each of the following: - * 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. - * Resource: resources are the services and components you provision on these platforms. - * Provisioner: Provisioner in terraform's lingo specifically refers to configuration tools like ansible or salt-stack which are used + * 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
@@ -1625,12 +1628,15 @@ It keeps track of the IDs of created resources so that Terraform knows what it i
Explain what the following commands do: - * terraform init initialises and downloads the provider's binary as described in the .tf files - * terraform plan is a dry-run listing the services and components that will be provisioned on specified provider's - platform. - * terraform validate parses through the terraform code to ensure that they are both syntactically correct and runtime - error free. - * terraform apply this command provision's the described services on the providers platform. + * terraform init + * terraform plan + * terraform validate + * terraform apply +
- terraform init initialises and downloads the provider's binary as described in the .tf files + - terraform plan is a dry-run listing the services and components that will be provisioned on specified provider's platform. +- terraform validate parses through the terraform code to ensure that they are both syntactically correct and runtime error free. +- terraform apply this command provision's the described services on the providers platform. +

terraform init scans your code to figure which providers are you using and download them.