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. 14 Sep, 2022 7 commits
    • Laura Pacilio's avatar
      backport of commit ee61929a · f30a1719
      Laura Pacilio authored
      f30a1719
    • Laura Pacilio's avatar
      backport of commit a891119b · 15377226
      Laura Pacilio authored
      15377226
    • Martin Atkins's avatar
      website: Version-specific upgrade guides (v1.3 branch) · d848737b
      Martin Atkins authored
      Before our website allowed selecting from older versions of Terraform to
      see older documentation we needed to preserve all of the historical
      upgrade guides in the latest release branch so that they'd stay available
      on the website.
      
      However, our new strategy is for each release to have its own separate
      set of documentation selectable using a global version selector. We should
      therefore now have only the upgrade guide for the each minor release
      on its release branch, with the upgrade guides for earlier releases
      instead maintained on their own branches.
      
      However, our v1.1 branch is, as a matter of pragmatism, serving as the home
      for the "v1.1 and earlier" documentation, and so there will continue to
      be multiple upgrade guides on that branch. For that reason, we're
      preserving the URL scheme "upgrade-guides" (plural) even though the URL
      now points to only a single version upgrade guide because that causes
      readers to land in the correct place if they are on a modern version's
      upgrade guide page and they use the version selector to choose the
      "v1.1 and earlier" option.
      d848737b
    • hc-github-team-tf-core's avatar
      Cleanup after v1.3.0-rc1 release · 2241c7eb
      hc-github-team-tf-core authored
      2241c7eb
    • hc-github-team-tf-core's avatar
      Release v1.3.0-rc1 · 4fbd7771
      hc-github-team-tf-core authored
      Unverified
      4fbd7771
    • James Bardin's avatar
      update go1.19.1 · ea204596
      James Bardin authored
      ea204596
    • Martin Atkins's avatar
      Update CHANGELOG.md · b814ed6f
      Martin Atkins authored
      Unverified
      b814ed6f
  2. 09 Sep, 2022 2 commits
  3. 02 Sep, 2022 1 commit
  4. 01 Sep, 2022 2 commits
  5. 31 Aug, 2022 6 commits
  6. 30 Aug, 2022 8 commits
  7. 29 Aug, 2022 11 commits
  8. 26 Aug, 2022 3 commits
    • Martin Atkins's avatar
      command/jsonchecks: Mark check result objects as experimental · 71dec301
      Martin Atkins authored
      This is a clumsy way to do this, but a pragmatic way to inform potential
      consumers that this part of the format is not yet finalized without having
      to read the docs to see our warning about that.
      
      We need to get some practical experience with a few different consumers
      making use of this format before we can be confident that it's designed
      appropriately. We're not _expecting_ to break it, but we'd like to leave
      the opportunity open in case we quickly learn that there's something
      non-ideal about this design.
      71dec301
    • Martin Atkins's avatar
    • Martin Atkins's avatar
      addrs: Be explicit about checkable object address kinds · 0e4e9f77
      Martin Atkins authored
      Previously we were attempting to infer the checkable object address kind
      of a given address by whether it included "output" in the position where
      a resource type name would otherwise go.
      
      That was already potentially risky because we've historically not
      prevented a resource type named "output", and it's also a
      forward-compatibility hazard in case we introduce additional object kinds
      with entirely-new addressing schemes in future.
      
      Given that, we'll instead always be explicit about what kind of address
      we're storing in a wire or file format, so that we can make sure to always
      use the intended parser when reading an address back into memory, or
      return an error if we encounter a kind we're not familiar with.
      0e4e9f77