数値変数名には単位を含める
ルール
Include units in numerical variable names (e.g., size_gb, ram_size_gb).
(数値変数名には単位を含める)
解説
単位を変数名に含めることで、単位の取り違えによるバグを防止します。
AWS推奨の設定方法です。
サンプルコード
variable "bandwidth_limit_mb" {
type = number
description = "Bandwidth limit in MB per second"
}
参考リンク
Show Text to Share数値変数名には単位を含める https://www.tricrow.com/infrastructure/development-guidline/coding_standards.naming_conventions.unit_suffix.html

