Showing posts with label AWS. Show all posts
Showing posts with label AWS. Show all posts

Friday, August 14, 2020

Terraform providers and configuration file

Previous     Next

This is the second blog post of terraform series. In this blog post, we are going to discuss, how to create/update/delete resource on AWS using the simple terraform configuration file.

In this Blog, we will use  “HCL(Hashicorp configuration language)” to write to terraform configuration files, which is recommended by Hashicorp. Extension of configuration file written in HCL (Hashicorp configuration language) is “.tf”.

Terraform State file

Previous This is the third blog post of terraform series. In this blog post, we are going to discuss terraform state file. We are going to...