Terraform best practices

From wikieduonline
Revision as of 13:35, 3 July 2022 by Welcome (talk | contribs)
Jump to navigation Jump to search

Best practices from Google Cloud team

https://cloud.google.com/docs/terraform/best-practices-for-terraform

  • Protect stateful resources: lifecycle { prevent_destroy = true }
  • Follow a standard module structure.
  • Adopt a naming convention.
  • Use variables carefully.
  • Expose outputs: outputs.tf
  • Use data sources.
  • Limit the use of custom scripts.
  • Include helper scripts in a separate directory: helpers/
  • Put static files in a separate directory: files/
  • Use built-in formatting: terraform fmt
  • Limit the complexity of expressions.
  • Use count for conditional values.
  • Use for_each for iterated resources.
  • Publish modules to a registry.

Related

See also

Advertising: