Difference between revisions of "Terraform data source: data"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
|||
Line 10: | Line 10: | ||
==Example== | ==Example== | ||
+ | https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami | ||
[[data]] "[[aws_ami]]" "myexample" { | [[data]] "[[aws_ami]]" "myexample" { | ||
most_recent = true | most_recent = true |
Revision as of 02:36, 2 February 2022
- Data sources:
template_file
,template
data
block
Example
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami
data "aws_ami" "myexample" { most_recent = true owners = ["self"] tags = { Name = "app-server" Tested = "true" } }
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc
data "aws_vpc" "selected" { id = var.my_vpc_id }
Related terms
See also
Advertising: