Which two steps are required to provision new infrastructure in the Terraform workflow?
(Pick the 2 correct responses below)
import
plan
validate
init
apply
Detailed Explanation:
Rationale for Correct Answer:
init: Initializes the working directory, downloads providers and modules.
apply: Executes the planned changes and provisions infrastructure.
Both steps are mandatory for provisioning new infrastructure.
Analysis of Incorrect Options (Distractors):
A. import: Used for existing resources, not provisioning new ones.
B. plan: Optional but recommended; not strictly required.
C. validate: Checks syntax only; does not provision resources.
Key Concept:The Terraform workflow requires initialization and application to create infrastructure.
Submit