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. 17 Aug, 2018 1 commit
    • Martin Atkins's avatar
      Initial experiment of Terraform as a Go Module with vendoring · cd99cea8
      Martin Atkins authored
      This was created in a few steps. "go" in the following is go 1.11-rc1
      
      - Use "go mod init" to migrate the vendor/vendor.json references into
        a new go.mod.
      
      - rm -rf vendor, since we're going to reconstruct that again in a moment.
      
      - "go mod tidy" as a way to get all the necessary stuff installed and the
        go.mod updated for what was actually resolved.
      
      - "go mod vendor" copied all of the dependencies from the module cache
        into the "vendor" directory, and created the `vendor/modules.txt` index
        file.
      
      This can then be built using "go install -mod=vendor .", where that extra
      flag forces it to read the dependencies only from the vendor dir and not
      from upstream or the local cache.
      
      This is not intended to be merged: it was just an experiment to test out
      Go 1.11-rc1 and get a sense of what a transition here might look like.
      cd99cea8
  2. 15 Aug, 2018 2 commits
  3. 14 Aug, 2018 3 commits
  4. 13 Aug, 2018 2 commits
  5. 10 Aug, 2018 2 commits
  6. 09 Aug, 2018 5 commits
  7. 07 Aug, 2018 1 commit
  8. 06 Aug, 2018 2 commits
  9. 05 Aug, 2018 1 commit
  10. 03 Aug, 2018 7 commits
  11. 02 Aug, 2018 1 commit
  12. 01 Aug, 2018 4 commits
  13. 31 Jul, 2018 4 commits
  14. 30 Jul, 2018 5 commits