Terraform में "इंटरपोलेशन-ओनली एक्सप्रेशंस डिप्रेक्टेड" चेतावनी को ठीक करें


11

मैंने 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.

इनमें से सैकड़ों संदेश हैं। क्या उन्हें ठीक करने का कोई स्वचालित तरीका है?

जवाबों:


13

क्या आपने पहले कोड अपग्रेड किया था?

टेराफॉर्म 0.11 0.12 के साथ संगत नहीं है, इसलिए आपको इसे पहले अपग्रेड करना होगा।

terraform init
terraform 0.12upgrade

यदि आपका टेराफ़ॉर्म कोड अन्य टेराफ़ॉर्म मॉड्यूल को कॉल कर रहा है, तो कृपया सुनिश्चित करें कि आपने इन टेराफ़ॉर्म मॉड्यूल को 0.12 पर भी अपग्रेड किया है।


3
हां, मैंने कोड अपग्रेड किया है। मुझे अभी भी ऊपर त्रुटियाँ हो रही थीं।
केविन बर्क

जूस स्पष्ट करने के लिए, उन्नयन मॉड्यूल साधन की तरह मॉड्यूल जड़ में यह एक ही 2 आदेशों चल .terraform / मॉड्यूल / <MODULE_NAME>
किम संत

4

मार्टिन एटकिन्स का टेरफॉर्म-क्लीन-सिंटैक्स कोड इस्तेमाल किया जा सकता है (धन्यवाद केविन बर्क के लिए सुराग)

मैंने बेशर्मी से इसका इस्तेमाल किया है और डॉकटर कंटेनर में पैक किया है ताकि इसे आसानी से नॉन linux_amd64 मशीनों पर चलाया जा सके, जैसे MacOS:

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:

यह उपकरण सहायक था, लेकिन ध्यान दें कि यह सरणियों (जैसे सबनेट_साइड) के भीतर मूल्यों को निर्बाध नहीं करता है। उसके लिए, मुझे रेक्सएक्स प्रतिस्थापन को सावधानीपूर्वक लागू करने के लिए वापस गिरना पड़ा: "\$\{([^}"]+)\}"यह यहां दस्तावेजों में प्रक्षेप के कारण नेत्रहीन रूप से लागू नहीं किया जा सकता है।
ट्रेवर रॉबिन्सन

2

यह टूल स्वचालित रूप से आपके लिए शुरुआत और समाप्ति उद्धरण और ब्रेसिज़ को स्ट्रिप करेगा, जो चेतावनी को ठीक करता है: https://github.com/apparentlymart/terraform-clean-syntax

go get github.com/apparentlymart/terraform-clean-syntax
terraform-clean-syntax .

हो रही है:panic: didn't find any token of type TokenOBrack
स्पंकी

0

मैंने उस इंटरपोलेशन सिंटैक्स को निकालने के लिए नोटपैड ++ का उपयोग किया।

regex:

^(.*)\${(.*)}

से बदलो:

\1\2 

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.