Reader small image

You're reading from  Getting Started with Terraform. - Second Edition

Product typeBook
Published inJul 2017
Reading LevelBeginner
PublisherPackt
ISBN-139781788623537
Edition2nd Edition
Languages
Right arrow
Author (1)
Kirill Shirinkin
Kirill Shirinkin
author image
Kirill Shirinkin

Kirill Shirinkin is an IT consultant who focuses on Cloud technologies and DevOps practices. He has worked in companies of different sizes and areas, from an online language learning leader to a major IT provider for the global travel industry and one of the largest management consultancies. He is also a cofounder of online mentorship platform mkdev.me, where he leads a team and teaches his students all about DevOps.
Read more about Kirill Shirinkin

Right arrow

Handling resource updates


Let's change our instance's name to be hello-updated-instance:

resource "aws_instance" "hello-instance" {  ami = "ami-9bf712f4"  instance_type = "t2.micro"  subnet_id = "subnet-5f22f536"  tags {    Name = "hello-update-instance"  }}

Before we actually run the update, wouldn't it be useful to see what exactly Terraform do when we run the terraform apply command again? Luckily, there is the terraform plan command that does exactly the same, that is, it shows you what applying do by checking the template, state file, and actual state of the resource:

$> terraform planRefreshing Terraform state in-memory prior to plan...The refreshed state will be used to calculate this plan, butwill not be persisted to local or remote state storage.aws_instance.hello-instance: Refreshing state... (ID: i-119a10ac)The Terraform execution plan has been generated and is shown below.Resources are shown in alphabetical order for quick scanning. Green resourceswill be created (or destroyed...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Getting Started with Terraform. - Second Edition
Published in: Jul 2017Publisher: PacktISBN-13: 9781788623537

Author (1)

author image
Kirill Shirinkin

Kirill Shirinkin is an IT consultant who focuses on Cloud technologies and DevOps practices. He has worked in companies of different sizes and areas, from an online language learning leader to a major IT provider for the global travel industry and one of the largest management consultancies. He is also a cofounder of online mentorship platform mkdev.me, where he leads a team and teaches his students all about DevOps.
Read more about Kirill Shirinkin