TFNFR33 - Precise Local Types Updated on Dec 2, 2024 One minute to read Category-CodeStyle Class-Pattern Class-Resource Language-Terraform Lifecycle-BAU Persona-Contributor Persona-Owner Severity-SHOULD Type-NonFunctional Validation-TBDID: TFNFR33 - Category: Code Style - Precise Local TypesPrecise local types SHOULD be used.Good example:{ name = "John" age = 52 } Bad example:{ name = "John" age = "52" # age should be number }