6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

terraform consoleの使い方

Posted at

用法

  • data型などの、terraform planを実行しないと内容を確認できないものの中身を見ることができる
  • リスト型、Map型などの型や、取得されるidなどの実態をあらかじめチェックすることができる

実行

terraform console

出力

> data.aws_instances.instances.ids[*]
[
  "i-01e56922222222222",
  "i-02de9a42111111111",
]

ワンライナーで出力したい場合

echo data.aws_instances.instances.ids[*] | terraform console
6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?