Hi guys. Is there a possibility to use terraform i...
# terraform
i
Hi guys. Is there a possibility to use terraform import to module https://github.com/cloudposse/terraform-aws-ec2-instance?
r
Sure. What are you trying to import ? If you’re trying to import the ec2 instance and the name of the module is
ec2_instance
, it should be as easy as this.
Copy code
terraform import module.ec2_instance.aws_instance.default i-12345678
The full list of resources and their resource names are documented here
i
thanks