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 Oct, 2018 1 commit
  2. 30 Jul, 2018 1 commit
  3. 20 Apr, 2018 1 commit
  4. 13 Feb, 2018 1 commit
  5. 25 Jan, 2018 1 commit
  6. 12 Dec, 2017 1 commit
    • Gauthier Wallet's avatar
      backend/s3: allow named credentials profiles to be used · 474c5925
      Gauthier Wallet authored
      Here we upgrade the AWS Go SDK to 1.12.27 and AWS provider to include terraform-providers/terraform-provider-aws#1608. 
      
      This includes the capability to use named credentials profiles from the `~/.aws/credentials` file to authenticate to the backend.
      474c5925
  7. 02 Nov, 2017 1 commit
    • Martin Atkins's avatar
      provider/terraform: reorganize for merge into core · a3ced1a3
      Martin Atkins authored
      The "terraform" provider was previously split out into its own repository,
      but that turned out to be a mistake due to how tightly it depends on
      aspects of Terraform Core.
      
      Here we prepare to bring it back into the core repository by reorganizing
      the directory layout to conform with what's expected there.
      a3ced1a3
  8. 05 Sep, 2017 1 commit
  9. 09 Jun, 2017 1 commit
  10. 18 May, 2017 1 commit
  11. 11 May, 2017 1 commit
  12. 05 Apr, 2017 1 commit
  13. 08 Feb, 2017 1 commit
  14. 23 Jan, 2017 1 commit
  15. 02 Jan, 2017 1 commit
    • Paul Stack's avatar
      provider/aws: Bump SDK version to 1.6.9 (#10993) · d9088d8c
      Paul Stack authored
      There is 1 breaking change. The OpsWorks Update API no longer supports
      `tenancy` as an update. So that has to be marked as ForceNew: true
      
      ```
      % make testacc TEST=./builtin/providers/aws
      % TESTARGS='-run=TestAccAWSOpsworksInstance'
      % 2 ↵ ✹ ✭
      ==> Checking that code complies with gofmt requirements...
      go generate $(go list ./... | grep -v /terraform/vendor/)
      2017/01/02 17:11:29 Generated command/internal_plugin_list.go
      TF_ACC=1 go test ./builtin/providers/aws -v
      -run=TestAccAWSOpsworksInstance -timeout 120m
      === RUN   TestAccAWSOpsworksInstance
      --- PASS: TestAccAWSOpsworksInstance (99.89s)
      PASS
      ok      github.com/hashicorp/terraform/builtin/providers/aws99.911s
      ```
      d9088d8c
  16. 15 Dec, 2016 1 commit
  17. 19 Nov, 2016 1 commit
  18. 18 Oct, 2016 1 commit
  19. 08 Aug, 2016 1 commit
  20. 15 Jul, 2016 1 commit
  21. 05 May, 2016 1 commit
  22. 11 Mar, 2016 1 commit
    • Paul Hinze's avatar
      deps: Update vendored aws-sdk-go to v1.1.9 · 1d74bfd4
      Paul Hinze authored
      We had actually caught mismatched deps versions between the `kms`
      package and others, so `godep restore` was not working on master.
      
      Fixing it requires a `godep update` so I figured we might as well update
      to the latest release.
      1d74bfd4
  23. 16 Feb, 2016 1 commit
  24. 29 Jan, 2016 1 commit
    • Paul Hinze's avatar
      Vendor all dependencies w/ Godep · 6fe27036
      Paul Hinze authored
       * Remove `make updatedeps` from Travis build. We'll follow up with more
         specific plans around dependency updating in subsequent PRs.
       * Update all `make` targets to set `GO15VENDOREXPERIMENT=1` and to
         filter out `/vendor/` from `./...` where appropriate.
       * Temporarily remove `vet` from the `make test` target until we can
         figure out how to get it to not vet `vendor/`. (Initial
         experimentation failed to yield the proper incantation.)
      
      Everything is pinned to current master, with the exception of:
      
       * Azure/azure-sdk-for-go which is pinned before the breaking change today
       * aws/aws-sdk-go which is pinned to the most recent tag
      
      The documentation still needs to be updated, which we can do in a follow
      up PR. The goal here is to unblock release.
      6fe27036