Commit Graph

20240 Commits

Author SHA1 Message Date
Joseph Anthony Pasquale Holsten
153202c3b0 vendor: rm github.com/hashicorp/golang-lru(/simplelru) 2017-08-04 13:25:02 -07:00
Joseph Anthony Pasquale Holsten
eccfa6de5c vendor: rm github.com/hashicorp/go-msgpack/codec 2017-08-04 13:23:08 -07:00
Joseph Anthony Pasquale Holsten
05ce58279e vendor: rm github.com/armon/go-metrics 2017-08-04 13:22:52 -07:00
Radek Simko
3db3502487 Update CHANGELOG.md 2017-08-04 22:05:46 +02:00
Radek Simko
4acdc53a56 Merge pull request #15695 from radeksimko/f-config-reserve-id
config: Make 'id' a reserved field name
2017-08-04 22:04:14 +02:00
James Bardin
550197db50 Merge pull request #15698 from cblecker/go1.8.3
build: Update travis and Vagrantfile go versions
2017-08-04 12:15:24 -04:00
James Bardin
11668d5c8a Merge pull request #15599 from alrs/terraform-tests-swallowed-errors
Fix swallowed tests in terraform package tests
2017-08-04 12:09:00 -04:00
Jake Champlin
66971cef70 Update CHANGELOG.md 2017-08-03 18:07:08 -04:00
Jake Champlin
3600f0b730 Merge pull request #15723 from hashicorp/f-get-boolean-non-default
core: Add `GetOkExists` schema function
2017-08-03 18:06:17 -04:00
Jake Champlin
d969f97e73
update tests 2017-08-03 17:53:07 -04:00
James Bardin
e76049eb0a update CHANGELOG.md 2017-08-03 15:53:08 -04:00
Jake Champlin
fa272e8c9c
Add more specific exists tests 2017-08-03 14:14:39 -04:00
James Bardin
eadda50f02 Merge pull request #15652 from hashicorp/jbardin/state-command
state commands with remote state backends
2017-08-03 13:29:45 -04:00
James Bardin
8a8b43185d Merge pull request #15663 from hashicorp/jbardin/diff-field-reader
memoize DiffFieldReader.ReadField
2017-08-03 13:25:39 -04:00
James Bardin
55d18dcef2 update state rm amd mv docs
Update the documentation to match the current behavior, and make the
usage output and website docs match.
2017-08-03 13:24:23 -04:00
James Bardin
dc30761497 Merge pull request #15567 from hashicorp/jbardin/consul-update
Update consul vendor and remote state
2017-08-03 13:20:31 -04:00
Jake Champlin
268138dbd4
Rename to GetOkExists 2017-08-03 12:05:19 -04:00
Radek Simko
6339f950c7 Merge pull request #15722 from hashicorp/b-remove-verbose-debug-log
Remove overly verbose DEBUG log
2017-08-03 17:48:40 +02:00
Radek Simko
de3015cebf
Remove overly verbose DEBUG log 2017-08-03 16:11:45 +02:00
Radek Simko
fb50afb0a1 Merge pull request #15708 from nfagerlund/aug2017_consul_example_link
Docs: Fix broken links and a broken example
2017-08-03 08:23:01 +02:00
Nick Fagerlund
8c7bfde292 Docs: Fix broken links and a broken example
These links were casualties of the core/provider split. There was also
an example that suggested cloning a subdirectory of a git repo.
2017-08-02 20:03:41 -07:00
Jake Champlin
ed5bbacab9 Merge pull request #15702 from hashicorp/f-update-dockerfile
update dockerfile to not include version prerelease string
2017-08-02 19:52:01 -04:00
Jake Champlin
3db869b7fe
update dockerfile to not include version prerelease string 2017-08-02 19:49:56 -04:00
Christoph Blecker
473d08d532
Update Vagrantfile to go1.8.3 2017-08-02 12:56:35 -07:00
Christoph Blecker
29b77cabec
Update travis to go1.8.3 and add testing for go1.9rc1 2017-08-02 12:56:21 -07:00
Jake Champlin
8e6a0845c1
Cleanup after 0.10 release 2017-08-02 14:40:37 -04:00
Jake Champlin
2041053ee9
v0.10.0 2017-08-02 14:39:14 -04:00
Radek Simko
67ceb1ab07
config: Make 'id' a reserved field name 2017-08-02 20:02:44 +02:00
James Bardin
94a1ca7341 move 0.10.0 (Unreleased) for release script 2017-08-02 12:09:50 -04:00
James Bardin
e3e6eee311 Merge pull request #15691 from hashicorp/jbardin/changelog
update CHANGELOG for 0.10.0
2017-08-02 11:41:45 -04:00
James Bardin
6134082a10 update CHANGELOG for 0.10.0 2017-08-02 11:32:13 -04:00
Jake Champlin
270bbdb19b
core: Add GetOkRaw schema function
Adds `GetOkRaw` as a schema function. This should only be used to verify
boolean attributes are either set or not set, regardless of their zero
value for their type. There are a few small use cases outside of the boolean
type where this will be helpful as well.

Overall, this shouldn't detract from the zero-value checks that `GetOK()`
currently has, and should only be used when absolutely needed. However,
there are enough use-cases for this addition without checking for the
zero-value of the type, that this is needed.

Primary use case is for a boolean attribute that is `Optional` and `Computed`,
without a default value. There's currently no way to verify that the boolean
attribute was explicitly set to the zero-value literal with the current
`GetOk()` function. This new function allows for that check, keeping the
`Computed` check for the returned `exists` boolean.

```
$ make test TEST=./helper/schema TESTARGS="-run=TestResourceDataGetOkRaw"
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/08/02 11:17:32 Generated command/internal_plugin_list.go
go test -i ./helper/schema || exit 1
echo ./helper/schema | \
        xargs -t -n4 go test -run=TestResourceDataGetOkRaw -timeout=60s -parallel=4
go test -run=TestResourceDataGetOkRaw -timeout=60s -parallel=4 ./helper/schema
ok      github.com/hashicorp/terraform/helper/schema    0.005s
```
2017-08-02 11:18:59 -04:00
Clint
9b9bfb9fec Add provider dev program guide (#15677)
* Add provider dev program guide

Requires assets from https://github.com/hashicorp/terraform-website/pull/12

* editing from feedback

* add spaces after ##
2017-08-02 09:54:26 -05:00
James Bardin
07b0101fb5 update workspace new test for inmem backend
The existing test assumed local state files.
2017-08-01 19:34:22 -04:00
James Bardin
32ae05c342 fix strict remote.State lineage check
We can't check lineage in the remote state instance, because we may need
to overwrite a state with a new lineage. Whil it's tempting to add an
optional interface for this, like OverwriteState(), optional interfaces
are never _really_ optional, and will have to be implemented by any
wrapper types as well.

Another solution may be to add a State.Supersedes field to indicate that
we intend to replace an existing state, but that may not be worth the
extra check either.
2017-08-01 19:34:22 -04:00
James Bardin
c3e943bed2 add another failing test for remote.State lineage
Want to make sure we don't hit this again.
2017-08-01 19:34:21 -04:00
James Bardin
16e8e405c7 create failing test cases for remote lineage issue
Some remote backend would fail on `-state push -force`, or `workspace
new -state` because of a new strict lineage check in remote.State.
2017-08-01 19:34:21 -04:00
James Bardin
18d71f273e make inmem behave more like remote backends
When remote backend imeplemtations create a new named state, they may
need to acquire a lock and/or save an actual empty state to the backend.
Copy this behavior in the inmem backend for testing.
2017-08-01 19:34:21 -04:00
James Bardin
5deef9621d export Reset()
This package is used for testing, so there needs to be an easy method
for reinitializing the stored data between tests.
2017-08-01 19:34:21 -04:00
James Bardin
ac60ddcd40 Support named states in inmeme backend
Used to expand test coverage
2017-08-01 19:34:21 -04:00
clint shryock
6a869f89bf fix broken/old link in Commands/Workspace 2017-08-01 17:49:32 -05:00
James Bardin
470448d8ce update CHANGELOG.md 2017-07-31 18:41:48 -04:00
James Bardin
efb007542b Merge pull request #15666 from hashicorp/f-init-from-module
command: terraform init -from-module=...
2017-07-31 09:32:17 -04:00
James Bardin
d02b4fd9b8 Merge pull request #15664 from hashicorp/jbardin/s3-backend-docs
Update S3 backend docs to reflect new workspaces
2017-07-31 09:08:14 -04:00
Martin Atkins
8a7a0a7459 command: terraform init -from-module=...
This restores the earlier behavior of the first positional argument to
terraform init in 0.9, but as a command line option.

The positional argument was removed to improve consistency with other
commands that take a working directory as their first positional argument.
It was originally intended that this functionality would return in a
later release along with some other general improvements to Terraform's
module handling, but we're introducing here an interim solution that
uses the existing module source concept, to allow for easier porting of
workflows that previously depended on the automatic copy behavior.

In a future release this feature may change again as the module
improvements design firms up, but we expect it to be broadly compatible
with this temporary state.
2017-07-28 15:23:29 -07:00
James Bardin
f63b216016 Update S3 backend docs to reflect new workspaces
Explain the path generated for state files when using workspaces.
2017-07-28 15:08:24 -04:00
James Bardin
ca68723c91 memoize DiffFieldReader.ReadField
The field reader code path is extremely inefficient, but refactoring
it all is much to invasive a change at the moment.

Have DiffFieldReader internally cache results for ReadField.
2017-07-28 14:26:36 -04:00
James Bardin
51547ad2ba add tests for state commands through a backend 2017-07-27 18:06:47 -04:00
James Bardin
5b4ae36cb0 don't print help for state loading errors
These already include detailed messages, and it's not a usage issue,
it's a config or file location issue.
2017-07-27 18:06:47 -04:00
James Bardin
2e7c8ab76a update commands.go to use StateMeta 2017-07-27 18:06:47 -04:00