Difference between revisions of "Terraform data source: data"
Jump to navigation
Jump to search
Line 20: | Line 20: | ||
} | } | ||
− | + | https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc | |
data "[[aws_vpc]]" "selected" { | data "[[aws_vpc]]" "selected" { | ||
id = var.[[vpc_id]] | id = var.[[vpc_id]] |
Revision as of 17:50, 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.vpc_id }
Related terms
See also
Advertising: