TF-003 Understand Terraform's purpose • Set 3
TF-003 Understand Terraform's purpose Practice Test 3 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. What is the purpose of the data source?
resource "aws_instance" "web" {
ami = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
}
data "aws_ami" "ubuntu" {
most_recent = true
owners = ["099720109477"]
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
}
}