Which command adds existing resources into Terraform state?
Which command adds existing resources into Terraform state?
The command that adds existing resources into Terraform state is 'terraform import'. This command is specifically designed to import existing resources into Terraform's state, enabling Terraform to manage those resources moving forward.
D: terraform import
agree Pete987