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.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 24 May, 2016 6 commits
-
-
Clint authored
-
Paul Hinze authored
-
Paul Hinze authored
-
James Bardin authored
Interpolate variable during Input and Validate
-
Paul Hinze authored
core: Keep errors/warning out of stdout for ease of automation
-
Maxime Bury authored
-
- 23 May, 2016 28 commits
-
-
James Nugent authored
provider/google: Provide valid config in acctest
-
James Nugent authored
The changes to allow for testing ID-only refresh conflict with passing in "" as Config for tests. In this case we instead construct a config with a known-non-existent bucket name.
-
Paul Stack authored
-
dkalleg authored
Changed schema type for disks to support dynamic non-ordered disk swapping. All Disk attributes have been made non ForceNew since any changes should be handled in the upgrade() function. Added 'name' attribute to disks to act as a unique identifier for when users request for new disks. It is also used as the filename for the new disk. Templates are considered immutable.
-
James Nugent authored
helper/resource: ignore data resource diffs during destroy
-
Joe Topjian authored
-
Joe Topjian authored
provider/openstack: openstack_blockstorage_volume_v2 resource
-
James Nugent authored
-
Joe Topjian authored
-
Joe Topjian authored
provider/openstack: Enable DHCP By Default
-
Paul Hinze authored
I wanted to make sure this case was handled, and it is! So here's an extra test for us.
-
Joe Topjian authored
The openstack_networking_subnet_v2 resource was originally designed to have DHCP disabled by default; however, a bug in the original implementation caused DHCP to always be enabled and never be disabled. This bug was fixed in #6052. Recent discussions have shown that users prefer if DHCP is enabled by default. This commit implements makes the change.
-
Martin Atkins authored
Data sources with non-computed configurations should be read during the refresh walk. This test ensures that this remains true.
-
Martin Atkins authored
Earlier we had a bug where data resources would not yet removed from the state during a destroy. This was fixed in cd0c4522, and this test will hopefully make sure it stays fixed.
-
Clint authored
-
Clint authored
* provider/fastly: Add cache settings Docs, tests, and implementation for Cache Settings support
-
Sander van Harmelen authored
provider/cloudstack: make replacing the ACL of a network update the network in place
-
Sander van Harmelen authored
provider/cloudstack: list network ACLs with VPC IDs
-
James Bardin authored
Adding walkValidate to the EvalTree operations, and removing the walkValidate guard from the Interpolater.valueModuleVar allows the values to be interpolated for Validate.
-
James Bardin authored
Variables weren't being interpolated during the Input phase, causing a syntax error on the interpolation string. Adding `walkInput` to the EvalTree operations prevents skipping the interpolation step.
-
clint shryock authored
-
stack72 authored
-
stack72 authored
-
-
Minku Lee authored
-
Paul Stack authored
-
stack72 authored
-
stack72 authored
-
- 22 May, 2016 2 commits
-
-
Joshua Spence authored
Closes #6100. Set the default value for the `description` field to be "Managed by Terraform".
-
Minku Lee authored
-
- 21 May, 2016 4 commits
-
-
Martin Atkins authored
When testing destroy, the test harness calls Refresh followed by Plan, with the expectation that the resulting diff will be empty. Data resources challenge this expectation, because they will always be instantiated during refresh if their configuration isn't computed, and so the subsequent diff will want to destroy what was instantiated. To work around this, we make an exception that data resource destroy diffs may appear in the plan but nothing else. This fixes #6713.
-
Martin Atkins authored
cd0c4522 contained a bug where the creation diff for a data resource was put into a new local variable within the else block rather than into the diff variable in the parent scope, causing a null diff to always be produced. This restores the expected behavior: a computed data resource appears in the diff, so it can then be fetched during the apply walk.
-
Martin Atkins authored
Apparently there's been a regression in the creation of data resource diffs: they aren't showing up in the plan at all. As a first step to fixing this, this is an intentionally-failing test that proves it's broken.
-
Paul Stack authored
-