DEV Community

Rahul Wagh
Rahul Wagh

Posted on • Originally published at jhooq.com

Terraform Data Sources | How to Use Data Sources?

GitHub Project - https://github.com/rahulwagh/Terraform-Topics/tree/master/data-sources

Terraform data sources can be used to fetch information back from the Cloud service provider (AWS, Google Cloud, Azure etc..). Along with your terraform provisioning script you need to write the terraform data source resource block for creating the data sources.

Terraform data sources can help you to fetch -

  1. Internal IP
  2. External IP
  3. Instance ID
  4. Tags

and much more other information associated with your terraform resource which can help automate your infrastructure code.

In this lab session, we are going to create a Terraform Data source to fetch the public IP of an EC2 instance. But similar terraform script can be written for other cloud resources such as S3 Bucket, IAM Rule, etc.

Top comments (0)