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

Returning data with outputs


We've already talked very briefly about outputs in previous chapters. By this time, you should already know what they are. However, let's recap their usage anyway.

Outputs allow the returning of data from the Terraform template after it was applied using the terraform output command. For example, to return the IP address of an EC2 instance, we could define an output as follows:

output "public_ip" { 
   value = "${aws_instance.web-server.public_ip}" 
} 

That allows us to easily pass this data to other scripts and tools. For example, with this approach, we could run tests against our servers. Enter Inspec.

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