Terraform : AWS : Terraform on AWS with SRE & IaC DevOps | Section 3 : Terraform Settings | Providers and Resources
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 17. Step-01: Introduction to Terraform Settings, Providers and Resources : Terraform Fundamental blocks . The above is called the Basic / Fundamental Block of terraform . Before 0.14 version we didn't have this terraform block . In terraform you are going to have a root module and a child module. Terraform Block : is a special block that is used to configure some behaviors in terraform What is the required terraform version that we are suppose to use. Provider configuration belong to root module. In terraform you are going to have something called the root module and a child module. We will also see the child module concept which are nothing but re-usable code that you are going to call and provision to your infrastructure . You can create post resource post creation actions using provisioners 18. Step...