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 -
- Internal IP
- External IP
- Instance ID
- 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)