Valid VA-002-P Dumps shared by ExamDiscuss.com for Helping Passing VA-002-P Exam! ExamDiscuss.com now offer the newest VA-002-P exam dumps, the ExamDiscuss.com VA-002-P exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com VA-002-P dumps with Test Engine here:
You want to use terraform import to start managing infrastructure that was not originally provisioned through infrastructure as code. Before you can import the resource's current state, what must you do in order to prepare to manage these resources using Terraform?
Correct Answer: B
The current implementation of Terraform import can only import resources into the state. It does not generate a configuration. Because of this, and prior to running terraform import, it is necessary to manually write a resource configuration block for the resource to which the imported object will be mapped. First, add the resources to the configuration file: resource "aws_instance" "example" { # ...instance configuration... } Then run the following command: $ terraform import aws_instance.example i-abcd1234