Difference between revisions of "Terraform data source: data"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
* https://www.terraform.io/docs/language/data-sources/index.html
 
* https://www.terraform.io/docs/language/data-sources/index.html
 +
Available since 2016
  
 
TOMERGE: [[Terraform data sources]]
 
TOMERGE: [[Terraform data sources]]

Revision as of 10:44, 28 February 2022

Available since 2016

TOMERGE: Terraform data sources

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

  • https://www.hashicorp.com/blog/terraform-aws-provider-4-0-refactors-s3-bucket-resource
  • Advertising: