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. 08 Oct, 2018 11 commits
  2. 06 Oct, 2018 3 commits
    • James Bardin's avatar
      missing diagnostics in pugin protocol · 131f1c3e
      James Bardin authored
      Some call diagnostics were being missed
      131f1c3e
    • James Bardin's avatar
      initialize empty diff in apply · 359075f2
      James Bardin authored
      While the schema Diff fucntion returns a nil diff when creating an empty
      (except for id) resource, the Apply function expects the diff to be
      initialized and ampty.
      359075f2
    • James Bardin's avatar
      a plan with no diff should return proposed state · 506f561c
      James Bardin authored
      PlanResourceChange isn't returning the diff, but rather it is returning
      the destired state. If the propsed state results in a nil diff, then,
      the propsed state is what should be returned.
      
      Make sure Meta fields are not nil, as the schema package expects those
      to be initialised.
      506f561c
  3. 03 Oct, 2018 6 commits
  4. 02 Oct, 2018 16 commits
  5. 01 Oct, 2018 4 commits
    • Martin Atkins's avatar
      plugin: Fix tests · 68ab4959
      Martin Atkins authored
      An earlier change made the tests not compile here. We now need to use the
      legacyPluginMap function, since pluginMap has now been replaced with
      helpers to produce new-style plugin _sets_.
      68ab4959
    • Martin Atkins's avatar
      helper/resource: Fix duplicated function testConfig · 123bcfcf
      Martin Atkins authored
      An earlier change introduced a new function testConfig to the main code
      for this package, which conflicted with a function of the same name in
      the test code.
      
      Here we rename the function from the test code, allowing for the more
      generally-named testConfig to be the one in the main code.
      123bcfcf
    • Martin Atkins's avatar
      builtin/providers/test: use new API for root module address · 4921c68d
      Martin Atkins authored
      terraform.RootModulePath is no longer present, but
      addrs.RootModuleInstance is equivalent to it.
      4921c68d
    • Martin Atkins's avatar
      configs/configupgrade: Use mock provider instead of test provider · 77581144
      Martin Atkins authored
      The test provider comes with a lot of baggage since it's designed to be
      used as a plugin, so instead we'll just use the mock provider
      implementation directly, and so we can (in a later commit) configure it
      appropriately for what our tests need here.
      77581144