Terraform data source: data

From wikieduonline
Jump to navigation Jump to search

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
}


data "template_file" "my-secret" {
  template = aws_iam_access_key.my_new_user.encrypted_secret
}

Related terms

See also

Advertising: