• ID: TFNFR33 - Category: Code Style - Precise Local Types
  1. Azure Verified Modules > 
  2. Specifications & Definitions > 
  3. TFNFR33 - Precise Local Types
  • Category-CodeStyle
  • Class-Pattern
  • Class-Resource
  • Language-Terraform
  • Lifecycle-BAU
  • Persona-Contributor
  • Persona-Owner
  • Severity-SHOULD
  • Type-NonFunctional
  • Validation-TBD

TFNFR33 - Precise Local Types

ID: TFNFR33 - Category: Code Style - Precise Local Types

Precise local types SHOULD be used.

Good example:

{
  name = "John"
  age  = 52
}

Bad example:

{
  name = "John"
  age  = "52" # age should be number
}
Jan 29, 2025