Terraform v0.12.16にアップグレードすると、次のようなメッセージが多数表示されます。
Warning: Interpolation-only expressions are deprecated
on ../modules/test-notifier/test_notifier.tf line 27, in resource "aws_sns_topic_policy" "default":
27: arn = "${aws_sns_topic.default.arn}"
Terraform 0.11 and earlier required all non-constant expressions to be
provided via interpolation syntax, but this pattern is now deprecated. To
silence this warning, remove the "${ sequence from the start and the }"
sequence from the end of this expression, leaving just the inner expression.
Template interpolation syntax is still used to construct strings from
expressions when the template includes multiple interpolation sequences or a
mixture of literal strings and interpolations. This deprecation applies only
to templates that consist entirely of a single interpolation sequence.
これらのメッセージは何百もあります。それらを修正する自動化された方法はありますか?
このツールは自動的に最初と最後の引用符と中括弧を取り除き、警告を修正します: https://github.com/apparentlymart/terraform-clean-syntax
go get github.com/apparentlymart/terraform-clean-syntax
terraform-clean-syntax .
最初にコードをアップグレードしましたか?
Terraform 0.11は0.12と互換性がないため、最初にアップグレードする必要があります。
terraform init
terraform 0.12upgrade
Terraformコードが他のterraformモジュールを呼び出している場合は、これらのterraformモジュールも0.12にアップグレードしたことを確認してください。
Martin Atkinsの terraform-clean-syntax コードを使用できます(手がかりに感謝 Kevin Burke )
私は恥知らずにそれを使用し、Dockerコンテナー内にパッケージ化したので、非linux_AMD64マシンで簡単に実行できます。マックOS:
https://github.com/NoLedgeTech/terraform-clean-syntax-docker
TL&DR(警告-これによりtfファイルが更新されます):
docker pull pniemiec/terraform-clean-syntax-docker
cd <DIRECTORY_WITH_TF_FILES>
terraform init
terraform plan # This shows a lot of warnings
docker run --rm -v $(pwd):/code -t pniemiec/terraform-clean-syntax-docker
terraform plan # This does not show a lot of warnings :sweat_smile:
Notepad ++を使用して、その補間構文を削除しました。
正規表現:
^(.*)\${(.*)}
replace_with:
\1\2