James Bardin
0d4d572c39
start work on helper/resource test fixtures
...
The helper resource tests won't pass for now, as they use a
terraform.MockProvider which can't be used in the schema.Provider shims.
2018-10-16 19:14:11 -07:00
Martin Atkins
d5d8596bb1
vendor: update google.golang.org/api
2018-10-16 19:14:11 -07:00
Kristin Laemmert
db26324b3c
command/format: fix indentation
...
also run go mod tidy
2018-10-16 19:14:11 -07:00
Kristin Laemmert
97ac1dedba
fix go module related merge conflict
2018-10-16 19:14:11 -07:00
Kristin Laemmert
8063f69e5c
cli: format/state refactor for new state format
...
format/state now requires provider schemas to properly format output
state. command/show has been modified to pass a context to format.State.
2018-10-16 19:14:11 -07:00
James Bardin
6f49a5d124
update go-plugin and hclog
2018-10-16 19:14:11 -07:00
Martin Atkins
917a320a3b
vendor: Update HCL2 and cty, and other related packages
...
This brings in a bugfix for analyzing variables inside relative traversal
expressions in HCL, and a cosmetic bugfix in cty for GoString of
cty.NullVal(cty.DynamicPseudoType).
This also updates some other packages, as a result of running "go get -u".
2018-10-16 19:14:11 -07:00
Martin Atkins
57ca9e3c0a
vendor: update go-cty, and some other dependencies
...
The primary reason for this update is to get cty.PathSet.Equal, for more
convenient deep comparisons using "cmp" in tests.
2018-10-16 19:14:11 -07:00
Martin Atkins
0341c78320
vendor: update cty to v0.0.0-20180831220647-752f6a689f5e
...
This includes a fix to UnknownAsNull to make it not crash when given a
value that is _already_ null.
2018-10-16 19:14:11 -07:00
Martin Atkins
7139887565
vendor: upgrade go-cty to latest
...
This includes the new PathSet type, which we'll use to represent the
"requires replacement" set of attribute paths coming back from providers
during planning.
2018-10-16 19:14:11 -07:00
Martin Atkins
1bb79696c6
vendor: update to latest github.com/zclconf/go-cty
...
This includes a bugfix to the cty/msgpack package to ensure correct
decoding of unknown and null values.
This also includes updates to cty's dependencies.
2018-10-16 19:14:11 -07:00
Martin Atkins
a4c98d3365
govendor fetch github.com/google.golang.org/grpc/...@v1.14.0
2018-10-16 19:11:09 -07:00
Martin Atkins
c45ebbc493
govendor fetch github.com/golang/protobuf/...
2018-10-16 19:11:09 -07:00
Martin Atkins
5e0b8b9721
govendor fetch google.golang.org/grpc/...
2018-10-16 19:11:09 -07:00
Martin Atkins
249fb9f212
govendor fetch github.com/coreos/etcd/...
2018-10-16 19:11:09 -07:00
Martin Atkins
3ea7e145e1
govendor fetch github.com/hashicorp/hcl2/...
...
This is a general catchup of some developments in the HCL2 codebase, but
in particular includes:
- Recording expression and evalcontext as part of diagnostics, so that
variable value information can be included alongside diagnostic
snippets.
- hcldec supports decoding blocks into tuple and object values as well as
list and map values, which then allows cty.DynamicPseudoType nested
attributes to work properly.
2018-10-16 19:11:09 -07:00
Martin Atkins
de6054a580
govendor fetch golang.org/x/sys/unix/...
...
This new version defines some symbols that are required by the grpc
library.
2018-10-16 19:11:09 -07:00
James Bardin
eeb606425d
update go-plugin with proto negotiation
2018-10-16 19:11:09 -07:00
James Bardin
44f52e47c5
vendor gomock
2018-10-16 18:58:49 -07:00
James Bardin
6c01444a8a
update grpc packages
2018-10-16 18:53:51 -07:00
Martin Atkins
3855b79736
govendor fetch github.com/hashicorp/hcl2/...
...
This includes updates to various diagnostic messages to improve precision
and consistency of terminology.
It also includes some other changes to portions of HCL API that Terraform
isn't yet using.
2018-10-16 18:53:51 -07:00
Martin Atkins
aa6b55bb17
govendor fetch github.com/zclconf/go-cty/...
...
This update includes a new conversion from tuple types to set types and
improvements to the error messages returned when conversions fail.
2018-10-16 18:53:51 -07:00
James Bardin
e3f706c97d
add go-cmp
...
This was much easier to use when tracking down diffs in large
structures.
2018-10-16 18:50:57 -07:00
Martin Atkins
6dcaafa6ba
govendor fetch github.com/zclconf/go-cty/...
...
This adds an ImpliedType to the msgpack package, which serves the same
purpose as ImpliedType in the json package.
2018-10-16 18:50:29 -07:00
Martin Atkins
93cda6dbd2
govendor fetch github.com/zclconf/go-cty/cty/...
...
This allows automatic conversions between different object types as long
as the target type is a subset of the given type.
2018-10-16 18:50:29 -07:00
Martin Atkins
b1247bf7af
govendor fetch github.com/zclconf/go-cty/cty/...
...
The existing cty packages were already at the latest version, but we were
not yet vendoring the msgpack package.
This also imports some dependencies from:
github.com/vmihailenco/msgpack
2018-10-16 18:50:29 -07:00
Martin Atkins
da17afaa85
govendor fetch github.com/golang/protobuf/proto/...
2018-10-16 18:49:20 -07:00
Martin Atkins
b8df11bc33
govendor fetch github.com/hashicorp/hcl2/...
...
This includes an upstream fix to the hcldec.Variables function that fixes
its behavior when dealing with specs that contain DefaultSpec, and other
similar wrapper specs.
2018-10-16 18:49:20 -07:00
Martin Atkins
f8a8f26c0d
govendor fetch github.com/zclconf/go-cty/cty/...
...
This includes upstream fixes, and in particular a converter for going
between map types with different element types.
2018-10-16 18:49:20 -07:00
Martin Atkins
d9a26bae26
govendor fetch github.com/hashicorp/hcl2/...
...
This includes a number of upstream fixes, but in particular fixes a race
on evaluating the same splat expression concurrently for multiple separate
EvalContexts.
2018-10-16 18:49:20 -07:00
Martin Atkins
fa11fb70f6
govendor fetch github.com/hashicorp/hcl2/...
...
This includes fixes to hcldec that should make our configschema.Block
implementation behave better with Optional+Computed attributes.
2018-10-16 18:48:28 -07:00
Martin Atkins
f2809854a2
govendor fetch github.com/hashicorp/hcl2/ext/dynblock/...
2018-10-16 18:44:26 -07:00
James Bardin
398a6ef31a
update go-version
...
The latest go-version update properly handles pre-release versions in
constraints.
2018-10-16 18:24:47 -07:00
Martin Atkins
b41f08d79d
govendor fetch github.com/zclconf/go-cty/...
2018-10-16 18:24:10 -07:00
Sander van Harmelen
cdf997a97c
govendor: update `go-tfe`
2018-10-15 19:26:06 +02:00
Paul Tyng
f74774ff4f
Merge pull request #18877 from gsacavdm/update-goautorest
...
Update go-autorest to v9.10.0
2018-10-15 12:53:53 -04:00
Sander van Harmelen
8826d67acf
govendor: update `go-tfe`
2018-10-11 22:07:22 +02:00
Sander van Harmelen
5eb49f9df5
govendor: update `go-tfe`
2018-10-10 19:45:22 +02:00
tombuildsstuff
6f7a60e6a9
Updating to v9.10.0 of `github.com/Azure/go-autorest`
2018-09-26 07:37:19 +10:00
Sander van Harmelen
4b9f17d967
govendor: update `go-tfe`
2018-09-20 21:54:54 +02:00
Kristin Laemmert
813b5fd27f
Merge pull request #18825 from sean-/master-make-dev-drift
...
build: Updates required to bump golang version to 1.11
2018-09-17 09:00:04 -07:00
Kristin Laemmert
d08cead067
upgrading github.com/xanzy/ssh-agent for go 1.11 compatibility
2018-09-14 10:51:04 -07:00
Sander van Harmelen
65ec7f945a
govendor: update `go-tfe`
2018-09-08 10:23:55 +02:00
Sander van Harmelen
064cb0d0b0
govendor: add dependencies for the remote backend
2018-08-03 11:29:11 +02:00
Brian Flad
bbeabcc055
vendor: terraform-providers/terraform-provider-aws@v1.29.0 and aws/aws-sdk-go@v1.14.31
2018-07-30 18:07:29 -04:00
Brian Flad
5ede721423
vendor: Pin aws/aws-sdk-go/service/lexmodelbuildingservice@v1.13.28 and aws/aws-sdk-go/service/organizations@v1.13.28 in vendor.json for consistency
2018-07-30 17:59:50 -04:00
Anthony Stanton
ab6d52a9f8
Bump terraform-provider-aws and aws-sdk-go
2018-04-20 09:47:00 +02:00
James Bardin
08f32443fc
update go-getter
...
update to the latest version of go-getter
2018-04-10 12:09:51 -04:00
James Bardin
dc8c1534fe
udpate winrmcp
2018-04-05 12:54:58 -04:00
James Bardin
61eae050ab
Merge pull request #17588 from creack/creack/fix-deepcopy-type
...
Fix issue with deepcopy returning wrong type causing panic
2018-04-05 09:24:08 -04:00
James Bardin
b214834834
update the vendored winrm release
...
This was updated to see if we can get at any error status from the
remote command and transport, which still is not available, but kept the
latest version since it fixes a couple race conditions.
2018-03-15 16:03:40 -04:00
Guillaume J. Charmes
bfac8e0eec
Update vendor for DeepCopy issue
...
Signed-off-by: Guillaume J. Charmes <gcharmes@magicleap.com>
2018-03-14 20:13:36 -04:00
stack72
78525fd65a
backend/manta: Update triton-go dependency to 1.1.1
...
This will support the features of RBAC in Manta Backends
2018-03-13 12:10:41 +02:00
Martin Atkins
59a49c6b3f
vendor: update hcl2 and cty
...
This is largely minor bugfixes for issues found since we last updated the
vendoring. There are some new features here that Terraform is not yet
using and thus present little risk.
In particular this includes the HCL-JSON spec change where arrays can now
be used at any level in a block label structure, to allow for preserving
the relative order of blocks.
2018-03-08 11:10:34 -08:00
Brian Flad
8ee936a068
Deps: Bump terraform-provider-aws@v1.10.0 and aws-sdk-go@v1.12.75
2018-02-24 19:52:10 -08:00
Martin Atkins
4f833d5682
Merge #17358 : HCL2-powered configuration loader (not yet used)
2018-02-16 11:00:20 -08:00
Martin Atkins
51e5f7a56b
govendor fetch github.com/go-test/deep
...
This will be used to produce readable diffs for deep data structures in
unit tests.
2018-02-15 15:56:38 -08:00
Martin Atkins
b865d62bb8
govendor fetch github.com/hashicorp/hcl2/...
...
This just catches us up with the latest fixes and improvements in upstream
HCL2.
2018-02-15 15:56:37 -08:00
James Bardin
e41b29d096
Merge pull request #17354 from hashicorp/jbardin/known_hosts
...
Verify host keys in ssh connections
2018-02-15 18:33:41 -05:00
Martin Atkins
976d85ae92
govendor fetch github.com/spf13/afero/...
2018-02-15 15:10:01 -08:00
James Bardin
e3e6104007
update x/crypt/ssh and add knownhosts package
2018-02-14 15:35:41 -05:00
Brian Flad
74598ff9fe
deps: Bump terraform-provider-aws@v1.9.0 and aws-sdk-go@v1.12.73
2018-02-13 06:26:02 -05:00
Brian Flad
ec25a320e1
Merge pull request #17216 from hashicorp/f-aws-cn-northwest-1
...
deps: Bump AWS provider to support cn-northwest-1 state
2018-02-06 18:01:42 -05:00
Brian Flad
b924e8cba5
deps: Bump terraform-provider-aws@v1.8.0 and aws-sdk-go@v1.12.70
2018-02-05 20:06:50 -05:00
James Nugent
1b97297860
deps: Remove unnecessary Joyent dependencies
...
github.com/joyent/triton-go replaced a bunch of other dependencies quite
some time ago, but the replaced dependencies were never removed. This
commit removes them from the vendor manifest and the vendor/ directory.
2018-01-30 20:59:10 -06:00
Brian Flad
8743edc4c9
deps: Bump AWS provider to support cn-northwest-1 state
2018-01-27 03:53:29 -05:00
James Bardin
18c2ad1cfc
update the go-plugin package
...
This contains some new functionality related to grpc.
2018-01-25 15:20:03 -05:00
James Nugent
0a9608c900
deps: Bump AWS provider to add eu-west-3 for state
...
Also updates github.com/aws/aws-sdk-go and adds github.com/beevik/etree.
Fixes terraform-providers/terraform-provider-aws#3129 .
2018-01-25 11:52:20 +00:00
stack72
e9476c6765
backend/manta: Update manta dependencies
...
Internally, triton-go has changed how it handles errors. We can now get rid of
checking strings for errors, and we have introduced an errors library that
wraps some of the major errors we encounter and test for
2018-01-17 11:34:02 -08:00
Masayuki Morita
f78fe3c01e
govendor fetch github.com/zclconf/go-cty/...
2018-01-10 09:16:45 -08:00
James Bardin
bf5944a92c
Merge pull request #16972 from hashicorp/jbardin/ssh-agent-identity
...
ssh connection `agent_identity`
2018-01-05 16:57:30 -05:00
Paul Stack
191cf283d5
backend/manta: Support Triton RBAC
...
Triton Manta allows an account other than the main triton account to be used via RBAC.
Here we expose the SDC_USER / TRITON_USER options to the backend so that a user can be specified.
2018-01-03 12:12:46 -08:00
James Bardin
75f2f61774
update ssh package
...
The agent_identity feature requires some bug fixes in the ssh package to
send the publick keys in the correct order.
2017-12-26 16:27:18 -05:00
Costas Tyfoxylos
470eaa5c78
vendor: update posener complete install
2017-12-19 13:02:16 +01:00
Gauthier Wallet
474c592569
backend/s3: allow named credentials profiles to be used
...
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.
2017-12-12 15:27:05 -08:00
Jaka Hudoklin
fd687a5b9e
vendor: github.com/hashicorp/go-version
2017-12-11 17:48:52 +01:00
Eyal Posener
e1dadaae44
command: use newer version of "complete" library
...
This takes care of filtering results for us, so we don't need to do it on our end anymore.
2017-12-05 10:24:04 -08:00
James Bardin
db22d9d70f
update cleanhttp
...
This enables the DualStack "happy eyeballs" dialer.
2017-11-30 18:09:43 -05:00
James Bardin
ca4abd0654
update mitchellh/cli
2017-11-29 14:57:02 -05:00
stack72
1fd0f803e4
Migrate Manta Remote state to be a backend
...
This PR changes manta from being a legacy remote state client to a new backend type. This also includes creating a simple lock within manta
This PR also unifies the way the triton client is configured (the schema) and also uses the same env vars to set the backend up
It is important to note that if the remote state path does not exist, then the backend will create that path. This means the user doesn't need to fall into a chicken and egg situation of creating the directory in advance before interacting with it
2017-10-30 18:36:50 +02:00
James Bardin
3a03d3683e
update consul api packages
...
This is from a commit just after the v1.0.0 release, because it removes
the Porter service dependency for tests. The client api package was not
changed.
2017-10-28 19:44:10 -04:00
Florian Forster
43ce6ad95f
govendor add cloud.google.com/go/storage
2017-10-27 16:52:21 -04:00
Martin Atkins
9bd54c24e7
govendor fetch golang.org/x/net/idna
2017-10-19 11:18:43 -07:00
Matt McQuillan
02404238a4
Updating go-checkpoint lib to have a fixed timeout
2017-10-17 07:25:56 -07:00
Martin Atkins
26861dd7aa
govendor fetch github.com/zclconf/go-cty/...
...
This new version supports a conversion from object types to map types,
which is important for Terraform because HCL2 { ... } syntax produces
objects but lots of Terraform attributes require maps.
2017-10-16 17:51:37 -07:00
Martin Atkins
4de052cf01
govendor fetch github.com/hashicorp/hcl2/...
2017-10-04 16:35:11 -07:00
Martin Atkins
21bf786401
govendor fetch github.com/hashicorp/hcl2/hcltest
2017-10-04 16:35:11 -07:00
Martin Atkins
c202afeca9
govendor fetch github.com/hashicorp/hcl2/...
2017-10-03 17:47:01 -07:00
James Bardin
91442b7146
Merge pull request #15680 from brunomcustodio/etcdv3-backend
...
[WIP] etcd v3 backend with lock support.
2017-10-03 14:15:58 -04:00
James Bardin
4694f88896
Merge pull request #16161 from hashicorp/jbardin/go-getter
...
update go-getter
2017-09-29 17:24:36 -04:00
Martin Atkins
564f5134e3
govendor fetch github.com/mitchellh/cli/...
2017-09-26 14:01:13 -07:00
James Bardin
606b71048d
update go-getter
2017-09-22 18:00:32 -04:00
James Bardin
e39da6e1c9
update go-getter
2017-09-14 12:30:55 -04:00
Bruno Miguel Custodio
524c3934c6
Add TLS support.
2017-09-09 08:03:59 +01:00
Bruno Miguel Custodio
8afb8248d5
Bump to 'etcd' v3.2.7.
2017-09-08 10:18:12 +01:00
Bruno Miguel Custodio
52c97e9fc9
First steps towards an 'etcdv3' backend.
2017-09-08 09:43:33 +01:00
tombuildsstuff
1425205348
Upgrading to the latest Azure SDK's
2017-09-06 12:41:05 -07:00
James Bardin
19f9d1c93a
Merge pull request #16023 from hashicorp/jbardin/update-go-getter
...
update go-getter
2017-09-05 18:11:39 -04:00
James Bardin
42764cbe94
update go-getter
...
Update to the latest go-getter to support unpacking github release
tarballs as modules.
2017-09-05 16:52:19 -04:00
Jake Champlin
5d4931cb2e
Update AWS SDK to match AWS provider dep
2017-09-05 09:21:07 -04:00