Terraform Life cycle
“terraform knows whether to create a resource or destroy or change a resource from its sate file”
Anything that is referred in the resource block is a desired state
Example
resource "aws_instance" "myec2" {
ami = "ami-55555555555"
instance_type = "t2.small"
}
If we make changes for Ami or instance type manually from console for example you are changing instancetype to t2.large in console
when we do terraform apply terrforrm changes there will be no effect on resource
its always only to t2.small
Example Usage
provider "aws" {
region = "us-west-2"
access_key = "PUT-YOUR-ACCESS-KEY-HERE"
secret_key = "PUT-YOUR-SECRET-KEY-HERE"
}
resource "aws_instance" "myec2" {
ami = "ami-55555555555"
instance_type = "t2.small"
}
```
Steps involed in Terraform lifeCycle
terraform init
provider = version
for example:
version = “2.9” downloads provider 2.9 version
version = “>= 2.7” downloads provider >=2.7
version = “<= 2.10”
version = “>=2.10,<=2.15” downloads any provider version with in specified range
terraform plan
> Terraform generates an execution plan describing what it will do to reach the desired state, and then executes it to build the described infrastructure
> it shows the plan of the resources to be created or destroyed or changed
> there will be no change on terraform state file when you execute terraform plan.
> The only case there is change in state file when we do terraform plan is when we mark a resource as taint
Terraform validate
It validates the synatax of terraform code
terraform apply
“`
It creates or destroys or changes the resources based on that are the resource terraform conf file.
Statefile will be effected
Explcit user input yes will be accepted
Terraform destroy
When we do Terraform Destroy it Destroys resources
Sate file will be effected
Explcit user input yes will be accepted
Saving terraform plan
To save a terraform plan terraform plan –out = hello
To apply this plan after few days
terraform apply hello
We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Check our landing page for details.
© 2021 TheTerraform.in - All Rights Reserved.
Designed By TenXinfotech.