`terraform console` is convenience

I’m using terraform in my company, and I like it. We don’t have to memorize all expressions of terraform to use it because of IDE’s auto complement function. In addition, sometimes I want to test some expressions quickly. terraform console can help it. > terraform console > [for s in ["a", "b", "c"] : upper(s)] [ "A", "B", "C", ] It is convenience for check values of data and resources because this command can read values in current tfstate....

May 28, 2021 · 1 min · waneal