-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
terraformのやつ #40
terraformのやつ #40
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
たぶん半年くらいすると自分で意図がわからなくなっているので、未来の自分に向けて記録を残す。 | ||
|
||
## そもそも解決したいこと | ||
リポジトリ、もしくはserviceモジュール直下のtfファイルは、そこで管理されているterraform全体で定義したいものが読み解けることが必要だと考えている。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [textlint] <eslint.rules.ja-technical-writing/no-doubled-joshi> reported by reviewdog 🐶
一文に二回以上利用されている助詞 "が" がみつかりました。
次の助詞が連続しているため、文を読みにくくしています。
- "が"
- "が"
同じ助詞を連続して利用しない、文の中で順番を入れ替える、文を分割するなどを検討してください。
(ja-technical-writing/no-doubled-joshi)
便利な一方で、「このリソースってどこで定義しているんだっけ?」「このリソースそこからも参照してるの?」みたいなことが時々起きる。 | ||
|
||
モジュールを使うことで、これを防ぐ。 | ||
モジュールで定義されたリソースやデータには直接参照することができず、またモジュール側もモジュールの外のリソースを直接参照することができない。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [textlint] <eslint.rules.ja-technical-writing/ja-no-redundant-expression> reported by reviewdog 🐶
【dict2】 "することができず"は冗長な表現です。"することが"を省き簡潔な表現にすると文章が明瞭になります。
解説: https://github.com/textlint-ja/textlint-rule-ja-no-redundant-expression#dict2 (ja-technical-writing/ja-no-redundant-expression)
便利な一方で、「このリソースってどこで定義しているんだっけ?」「このリソースそこからも参照してるの?」みたいなことが時々起きる。 | ||
|
||
モジュールを使うことで、これを防ぐ。 | ||
モジュールで定義されたリソースやデータには直接参照することができず、またモジュール側もモジュールの外のリソースを直接参照することができない。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [textlint] <eslint.rules.ja-technical-writing/ja-no-redundant-expression> reported by reviewdog 🐶
【dict2】 "することができない"は冗長な表現です。"することが"を省き簡潔な表現にすると文章が明瞭になります。
解説: https://github.com/textlint-ja/textlint-rule-ja-no-redundant-expression#dict2 (ja-technical-writing/ja-no-redundant-expression)
モジュールで定義されたリソースやデータには直接参照することができず、またモジュール側もモジュールの外のリソースを直接参照することができない。 | ||
モジュール-モジュールの外部の入出力はそれぞれ`variable`, `output`で明示的に定義する必要があり、これを安全装置として使おうという試み。 | ||
|
||
- `variable`, `output`をいちいち定義するのはめんどうなので周辺の依存関係を自然とモジュールにまとめるようになる |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [textlint] <eslint.rules.ja-technical-writing/no-doubled-joshi> reported by reviewdog 🐶
一文に二回以上利用されている助詞 "に" がみつかりました。
次の助詞が連続しているため、文を読みにくくしています。
- "に"
- "に"
同じ助詞を連続して利用しない、文の中で順番を入れ替える、文を分割するなどを検討してください。
(ja-technical-writing/no-doubled-joshi)
No description provided.