Difference between revisions of "Terraform data source: data"
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc | https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc | ||
data "[[aws_vpc]]" "selected" { | data "[[aws_vpc]]" "selected" { | ||
− | id = var.[[ | + | id = var.[[my_vpc_id]] |
} | } | ||
Revision as of 18:19, 19 October 2021
- Data sources:
template_file
,template
data
block
Example
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: