TF-003 Understand Terraform's purpose Practice Question
This TF-003 practice question tests your understanding of understand terraform's purpose. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Terraform will perform the following actions:
# aws_instance.example will be updated in-place
~ resource "aws_instance" "example" {
ami = "ami-0c55b159cbfafe1f0"
~ instance_type = "t2.micro" -> "t2.small"
tags = {}
}
Refer to the exhibit. A developer runs terraform plan and sees the above output. What will happen when terraform apply is executed?
Terraform will perform the following actions:
# aws_instance.example will be updated in-place
~ resource "aws_instance" "example" {
ami = "ami-0c55b159cbfafe1f0"
~ instance_type = "t2.micro" -> "t2.small"
tags = {}
}
A
The existing EC2 instance is replaced due to a change in instance_type.
Why wrong: Instance_type change does not force replacement for AWS; it can be updated in-place.
B
A new EC2 instance is created with instance_type t2.small, and the old one is destroyed.
Why wrong: The plan shows an in-place update, not replacement (no 'force new' prefix).
C
The existing EC2 instance's instance_type is changed to t2.small in-place.
The tilde (~) and 'updated in-place' indicate a modification without recreation.
D
No changes will be made because the plan shows an update.
Why wrong: The plan shows one change; apply will execute that change.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The existing EC2 instance's instance_type is changed to t2.small in-place.
Option B is correct. The plan shows 'updated in-place' with a tilde (~) indicating modification, not recreation. The instance_type will change from t2.micro to t2.small without destroying the instance. Option A describes replacement (force new), which is not indicated. Option C is incorrect because AWS allows in-place modification of instance_type for stopped instances. Option D is incorrect because the plan shows one change.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
The existing EC2 instance is replaced due to a change in instance_type.
Why it's wrong here
Instance_type change does not force replacement for AWS; it can be updated in-place.
✗
A new EC2 instance is created with instance_type t2.small, and the old one is destroyed.
Why it's wrong here
The plan shows an in-place update, not replacement (no 'force new' prefix).
✓
The existing EC2 instance's instance_type is changed to t2.small in-place.
Why this is correct
The tilde (~) and 'updated in-place' indicate a modification without recreation.
Related concept
Read the scenario before looking for a memorised answer.
✗
No changes will be made because the plan shows an update.
Why it's wrong here
The plan shows one change; apply will execute that change.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.
Trap categories for this question
Command / output trap
The plan shows an in-place update, not replacement (no 'force new' prefix).
Detailed technical explanation
How to think about this question
This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
Use explanations to understand the rule behind the answer.
TExam Day Tips
→Underline the problem statement mentally.
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the TF-003 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which TF-003 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
Understand Terraform's purpose — This question tests Understand Terraform's purpose — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The existing EC2 instance's instance_type is changed to t2.small in-place. — Option B is correct. The plan shows 'updated in-place' with a tilde (~) indicating modification, not recreation. The instance_type will change from t2.micro to t2.small without destroying the instance. Option A describes replacement (force new), which is not indicated. Option C is incorrect because AWS allows in-place modification of instance_type for stopped instances. Option D is incorrect because the plan shows one change.
What should I do if I get this TF-003 question wrong?
Identify which TF-003 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This TF-003 practice question is part of Courseiva's free HashiCorp certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the TF-003 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.