This project is mirrored from https://:*****@github.com/hashicorp/terraform.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 12 Jan, 2021 1 commit
    • Pam Selle's avatar
      Remove revision from version command · 83e6703b
      Pam Selle authored
      The revision field is only populated on dev builds so this means
      most releases of Terraform have an empty "terraform_revision" field
      in the JSON output. Since we recommend developers use go tooling
      to `go build` this tool when developing, the revision is not useful
      data and so it is removed.
      83e6703b
  2. 09 Aug, 2019 1 commit
  3. 26 Jul, 2019 1 commit
  4. 03 May, 2019 1 commit
  5. 29 Apr, 2019 1 commit
    • Kristin Laemmert's avatar
      lang/funcs: add acc tests for functions (#21112) · 394cf7f2
      Kristin Laemmert authored
      * lang/funcs: testing of functions through the lang package API
      The function-specific unit tests do not cover the HCL conversion that happens when the functions are called in a terraform configuration. For e.g., HCL converts sets to lists before passing it to the function. This means that we could not test passing a set in the function _unit_ tests.
      This adds a higher-level acceptance test, plus a check that every (pure) function has a test.
      
      * website/docs: update function documentation
      394cf7f2