Terraform has recently launched the version 1.5.0 which introduced the much awaited feature of creation of configurations for imported resources. With the introduction of this new feature, users don't need to write the imported resources configuration manually. Let's understand in detail about this new way of importing the resources to bring them under the management of terraform. The new way of Terraform Import In new way of terraform import, Terraform has introduced a new import block which you can add to any Terraform configuration file. A common pattern is to create a separate file for all of your import blocks with the name "imports.tf". Syntax # Write an import block import { to = RESOURCE_ADDRESS id = RESOURCE_ID } Let's see the new workflow for importing the resources. Example : Let's say, we have manually created a vpc and two subnets inside it in google cloud. Now we want to import and manage these manually created resources using terraform. Ste...