How to use Terraform Import the Right Way

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 16

  • @faltuaccount4162
    @faltuaccount4162 4 หลายเดือนก่อน +1

    A simple walkthrough of technologies we use like this is always greatly appreciated !

    • @TeKanAid
      @TeKanAid  4 หลายเดือนก่อน

      Thank you!

  • @bernardoteisceira975
    @bernardoteisceira975 2 ปีที่แล้ว +2

    Great video, it really helped me to understand 'tf import' much better. Regards from Argentina!

    • @TeKanAid
      @TeKanAid  2 ปีที่แล้ว +1

      Glad it helped, Bernardo! All the best to you!

  • @srini580
    @srini580 5 หลายเดือนก่อน

    Thanks, Sir! Very informative!

    • @TeKanAid
      @TeKanAid  5 หลายเดือนก่อน

      You’re welcome!

  • @AndyMadge
    @AndyMadge ปีที่แล้ว +2

    It's easier to add an 'empty' resource to your config before doing the import, like this:
    resource "aws_instance" "console" {}
    Then after the import you do this to see the actual state:
    terraform state show aws_instance.console
    You can then copy and paste that output into your config. You'll need to tweak it slightly and remove some of unnecessary attributes, but it much simpler than having to manually generate the config

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว

      Once you import the state, you should be able to run the state show command to get a hint of the attributes to use in the config. Check out some third party libraries such as Terraformer that can help generate config.

  • @jeydrn276
    @jeydrn276 10 หลายเดือนก่อน +1

    Thank you! very clear and well explained :)

    • @TeKanAid
      @TeKanAid  10 หลายเดือนก่อน

      Thank you!

  • @chrisstone7368
    @chrisstone7368 ปีที่แล้ว +1

    Great video tutorial!

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว +1

      Thank you! Cheers!

  • @joshuabrard1061
    @joshuabrard1061 ปีที่แล้ว

    Thanks for the video!

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว

      my pleasure!

  • @PeterGaard
    @PeterGaard ปีที่แล้ว +1

    What happens if your config file is wrong when you run terraform import? is there any way to iterate to get it right.

    • @TeKanAid
      @TeKanAid  ปีที่แล้ว +1

      Great question. If the config is wrong, when you run terrafrom plan, you will see a diff. Once you run terrafrom plan and it gives you the message that there is no change in the infrastructure then you know everything is correct.