Complete the code to import an existing AWS S3 bucket into Terraform state.
terraform import aws_s3_bucket.example [1]
You must specify the actual bucket name when importing, not the resource name or ID placeholder.
Complete the code to import an AWS EC2 instance with the correct ID format.
terraform import aws_instance.web [1]
The EC2 instance ID must be in the format starting with 'i-' followed by hexadecimal characters.
Fix the error in the import command by choosing the correct resource address format.
terraform import [1] my-resource-id
The correct resource address format is resource_type.resource_name with a dot separator.
Fill both blanks to correctly import a resource and specify its ID.
terraform import [1] [2]
The first blank is the Terraform resource address, and the second blank is the actual resource ID in AWS.
Fill the blanks to import an AWS IAM user with the correct resource address and user name.
terraform import [1] [2]
The resource address uses dot notation (blank 1), the user name is the actual AWS IAM user name (blank 2).