Mitchell Hashimoto
80830985c0
Merge pull request #1454 from hashicorp/f-copy-config
...
terraform: copy RawConfigs to avoid races
2015-04-09 09:33:40 -07:00
Mitchell Hashimoto
06beab6fd8
config: copy the key on Copy
2015-04-09 09:31:04 -07:00
Mitchell Hashimoto
b201983304
terraform: copy RawConfigs
2015-04-09 09:21:38 -07:00
Mitchell Hashimoto
f0004186cf
Merge pull request #1452 from hashicorp/b-inherit-validate
...
terraform: don't prune, but disable, inherited configs [GH-1447]
2015-04-09 09:03:11 -07:00
Mitchell Hashimoto
d8621ca20e
Merge pull request #1453 from hashicorp/f-phinze-changelog
...
Update CHANGELOG
2015-04-09 08:54:38 -07:00
Mitchell Hashimoto
eda2e0fdfc
terraform: fix disable provider tests
2015-04-09 08:51:38 -07:00
Paul Hinze
271d8e8be3
Update CHANGELOG
...
Catching up with my post 0.4 CHANGELOG lag.
2015-04-09 10:51:04 -05:00
Mitchell Hashimoto
bcff7e070c
terraform: don't prune, but disable, inherited configs [GH-1447]
2015-04-09 08:48:08 -07:00
Paul Hinze
4363ac4970
Merge pull request #1444 from hashicorp/b-launch-config-bugs
...
providers/aws: fix a few more bugs in launch configs
2015-04-09 10:24:18 -05:00
Paul Hinze
bfb3134148
Merge pull request #1445 from hashicorp/b-ebs-perpetual-recreate-without-both-volume-fields
...
providers/aws: reduce scope of block_device set hashcodes
2015-04-09 10:24:07 -05:00
Clint
9563ab301f
Merge pull request #1450 from hashicorp/changelog-updates-04092015
...
Update CHANGELOG
2015-04-09 10:20:09 -05:00
Paul Hinze
7fe34d4547
providers: check for empty plan after each test step
...
Each acceptance test step plays a Refresh, Plan, Apply for a given
config. This adds a follow up Plan and fails the test if it does not
come back empty. This will catch issues with perpetual, unresolvable
diffs that crop up here and there.
This is going to cause a lot of our existing acceptance tests to fail -
too many to roll into a single PR. I think the best plan is to land this
in master and then fix the failures (each of which should be catching a
legitimate provider bug) one by one until we get the provider suites
back to green.
2015-04-09 10:19:01 -05:00
Clint Shryock
06287f9053
Update CHANGELOG
2015-04-09 10:14:44 -05:00
Mitchell Hashimoto
3a2c60aba0
update CHANGELOG
2015-04-09 07:54:13 -07:00
Clint Shryock
ffdd20133a
providers/aws: Convert AWS Security Group to upstream aws-sdk-go
...
Moves structure test lib too, to that `make test` actually runs it
2015-04-09 09:10:04 -05:00
Clint Shryock
ef0a763c29
fix pointer references
2015-04-09 09:03:45 -05:00
Paul Hinze
c0196d948d
Merge pull request #1437 from hashicorp/b-module-provider-validation
...
terraform: don't validate providers outside of modules if we don't have to
2015-04-09 09:03:13 -05:00
Paul Hinze
34c7bbcf4d
providers/aws: reduce scope of block_device set hashcodes
...
Fixes #1409
Resource set hash calculation is a bit of a devil's bargain when it
comes to optional, computed attributes.
If you omit the optional, computed attribute from the hash function,
changing it in an existing config is not properly detected.
If you include the optional, computed attribute in the hash and do not
specify a value for it in the config, then you'll end up with a
perpetual, unresolvable diff.
We'll need to think about how to get the best of both worlds, here, but
for now I'm switching us to the latter and documenting the fact that
changing these attributes requires manual `terraform taint` to apply.
2015-04-09 08:53:09 -05:00
Paul Hinze
8fccd9cec4
providers/aws: fix a few more bugs in launch configs
...
These bugs were found by additional check added in #1443
* Reversed nil err check meant that block devices were broken :(
* Fixing the err check revealed a few missed pointer derefs
* Unlike instances, ephemeral block devices do come back in
`BlockDeviceMappings` from `DescribeLaunchConfigurations` calls, so
we need to recognize them and filter them properly. Even though
they're not set as computed, I'm doing a `d.Set` since it doesn't
hurt and it gives us the benefit of basic drift detection.
2015-04-09 08:36:18 -05:00
Paul Hinze
36e364a239
Merge pull request #1440 from TimeIncOSS/fix-ec2-region
...
ec2/config: Use provided region instead of hardcoding us-west-2
2015-04-09 07:51:23 -05:00
Radek Simko
947761f34f
ec2/config: Use provided region instead of hardcoding us-west-2
2015-04-09 12:36:37 +01:00
Mitchell Hashimoto
8a90bd08a3
terraform: test negative case for disable provider transformer
2015-04-08 21:39:56 -07:00
Mitchell Hashimoto
edc97d3afd
terraform: expanded resource nodes implement graphNodeConfig
2015-04-08 21:25:17 -07:00
Mitchell Hashimoto
218f147c0c
terraform: test fixture modified to not prune provider
2015-04-08 21:25:03 -07:00
Mitchell Hashimoto
36520121b1
terraform: disable providers that are only used by modules
2015-04-08 21:14:19 -07:00
Clint
5c3ec3ddcc
Merge pull request #1411 from hashicorp/f-aws-upstream-network-interface
...
provider/aws: Convert AWS Network Interface to aws-sdk-go
2015-04-08 15:51:36 -05:00
Clint
8e25dcd4f6
Merge pull request #1408 from hashicorp/f-aws-upstream-eip
...
provider/aws: Convert EIP to use upstream aws-sdk-go
2015-04-08 15:51:18 -05:00
Clint
0f6ba3eae9
Merge pull request #1407 from hashicorp/f-aws-upstream-internet-gateway
...
Convert AWS Internet Gateway to use upstream aws-sdk-go
2015-04-08 15:51:10 -05:00
Clint
281825db76
Merge pull request #1398 from hashicorp/f-aws-upstream-subnet
...
provider/aws: Convert AWS Subnet to mainstream aws-sdk-go
2015-04-08 15:38:05 -05:00
Clint Shryock
3a5a3d8515
update test to pass on Travis
2015-04-08 15:27:48 -05:00
Clint
abdfa450b2
Merge pull request #1397 from hashicorp/aws-upstream-keypair
...
provider/aws: Convert Key Pair to upstream aws-sdk-go
2015-04-08 15:21:58 -05:00
Clint
28f8dab87f
Merge pull request #1396 from hashicorp/f-aws-route53record-add-update
...
provider/aws: Change Route 53 record to allow resource updates
2015-04-08 15:14:46 -05:00
Paul Hinze
650b9d5542
Merge pull request #1427 from dainis/fix_network_interface_interface
...
Fix #1394 , network value for network_interface
2015-04-08 14:24:20 -05:00
Clint Shryock
22e487c5d0
surface error with setting records on Route 53 record
2015-04-08 14:01:00 -05:00
Clint Shryock
29a5d9fc1a
Update how we expand/flatten TXT records for Route 53
2015-04-08 13:58:23 -05:00
Clint
9a3bc12cff
Merge pull request #1415 from hashicorp/b-fix-route53-recorcd-zone
...
provider/aws: Fix issue with Route 53 and pre-existing, external Hosted zones
2015-04-08 09:38:59 -05:00
Clint Shryock
f2b68c4ca8
provider/aws: Fix issue in updating Route 53 records on refresh/read.
...
Route 53 records were silently erroring out when saving the records returned
from AWS, because they weren't being presented as an array of strings like we
expected.
2015-04-08 09:06:15 -05:00
Dainis Tillers
ab71de8650
Just removing network refresh wont cut it, value from config must be used
2015-04-08 15:38:07 +03:00
Dainis Tillers
8f717c3e60
Fix #1394 , network value for network_interface isn't a computed value and there is no need to refresh it each time instance data is read
2015-04-08 15:29:46 +03:00
Mitchell Hashimoto
3fb138201f
update CHANGELOG
2015-04-07 17:57:52 -07:00
Mitchell Hashimoto
3a3cae9c9c
Merge pull request #1418 from hashicorp/b-module-storage-path
...
config/module: storage path should be independent of system
2015-04-07 17:56:27 -07:00
Mitchell Hashimoto
aab7bc0da5
config/module: rename parameters
2015-04-07 17:07:50 -07:00
Mitchell Hashimoto
650a9f372b
command: implement proper module.Storage interface
2015-04-07 16:46:56 -07:00
Mitchell Hashimoto
2378160803
config/module: determine storage folder by path
2015-04-07 16:44:24 -07:00
Mitchell Hashimoto
f084d8d932
config/module: store the path with the module
2015-04-07 16:37:46 -07:00
Mitchell Hashimoto
4888c18b61
update CHANGELOG
2015-04-07 15:36:28 -07:00
Mitchell Hashimoto
a6790a4c7d
Merge pull request #1417 from hashicorp/b-tfvars-on-push
...
command/push: read terraform.tfvars
2015-04-07 15:36:07 -07:00
Mitchell Hashimoto
000d28c489
command/push: read terraform.tfvars
2015-04-07 15:34:06 -07:00
Paul Hinze
a9ea489487
Merge pull request #1412 from hashicorp/b-asg-in-classic
...
providers/aws: fix LCs being invalid in classic
2015-04-07 17:31:08 -05:00
Mitchell Hashimoto
1fac7b6488
state: cache should use State.Equal to check equality
...
reflect.DeepEqual was returning false, sometimes.
2015-04-07 15:03:04 -07:00