Paul Hinze
bba3890f32
Makefile: bump test timeout from 10s to 30s
...
on a slow internet connection, the BitBucket tests were taking over 10s
and panicing the test run
2015-01-24 07:57:15 -08:00
Sander van Harmelen
a3ef8bed68
Merge pull request #849 from gfloyd/spot-price
...
Add spot_price parameter to aws_launch_configuration resource
2015-01-23 23:48:09 +01:00
Graham Floyd
91378ce0af
Add test for launch configuration with spot price
2015-01-23 15:51:25 -06:00
nevins-b
47b244d296
adding support for egress rules in AWS Security Groups
2015-01-23 09:46:20 -05:00
Sonia Hamilton
6b9f4e09b0
dnsmadeeasy documentation
2015-01-23 17:33:40 +11:00
Sonia Hamilton
c30da785e8
Clone dnsmadeeasy from upstream.
...
Cloned from https://github.com/soniah/terraform-provider-dme , and
the following files removed:
* .gitignore
* .travis.yml
* AUTHORS.md
* LICENSE
* README.md
2015-01-23 17:33:08 +11:00
Seth Vargo
5713b7abcc
Remove extra newline
2015-01-22 16:09:26 -05:00
Seth Vargo
91ed8ae916
Update eventmachine to a version that compiles
2015-01-22 16:09:25 -05:00
Seth Vargo
0a7dea5532
Improve readability and purpose of multi-env default test
2015-01-22 16:09:25 -05:00
Seth Vargo
038d241043
Update the documentation to read the new AWS environment variables
2015-01-22 16:09:25 -05:00
Seth Vargo
072a1cf353
Read the "standard" AWS environment variables
...
This is 100% backwards-compatible
2015-01-22 16:09:25 -05:00
Seth Vargo
4980838802
Merge pull request #854 from hashicorp/sethvargo/travis_docker
...
Run on the new Travis Docker infrastructure
2015-01-22 16:08:42 -05:00
Seth Vargo
b901f31645
Post to IRC
2015-01-22 16:02:03 -05:00
Seth Vargo
a61c409fd2
Only test the master branch (and PRs)
2015-01-22 15:57:01 -05:00
Seth Vargo
100270378b
Run on the new Travis Docker infrastructure
2015-01-22 15:56:32 -05:00
Seth Vargo
265599f5ff
Merge pull request #852 from EvanKrall/patch-1
...
Fix comment in consul provider to not mention DigitalOcean
2015-01-22 15:51:01 -05:00
Evan Krall
090a30e988
Fix comment in consul provider to not mention digitalocean
2015-01-22 12:45:55 -08:00
Graham Floyd
c9a0627f13
Add spot_price parameter to aws_launch_configuration resource
2015-01-21 22:48:04 -06:00
Mitchell Hashimoto
a3faad4f0d
Merge pull request #844 from atlassian/remove-outdated-comment
...
No longer needed after merging of PR 804.
2015-01-21 09:55:01 -08:00
Otto Jongerius
7759a28e9c
No longer needed after merging of PR 804.
2015-01-21 18:48:28 +11:00
Paul Hinze
ffe5fb03b7
Merge pull request #842 from hashicorp/updatedeps-gox
...
Makefile: roll gox into updatedeps
2015-01-20 17:46:39 -08:00
Paul Hinze
f69bdb608c
Makefile: roll gox into updatedeps
...
No need to have an extra dev bootstrapping step when we can automate it!
2015-01-20 17:38:19 -08:00
Armon Dadgar
df71834ff7
Merge pull request #831 from gulyasm/log-typo
...
Fixed wrong cross zone balancing error log.
2015-01-20 13:20:25 -08:00
Armon Dadgar
4a6c74a779
Merge pull request #833 from philk/minor_refresh_fix
...
Fix typo in refresh command error output
2015-01-20 13:19:48 -08:00
Phil Kates
b211d69dde
Fix typo in refresh command error
...
Noticed this while I was digging around to see how the commands work.
2015-01-17 15:43:04 -08:00
gulyasm
0486dd0624
Fixed wrong cross zone balancing error log.
...
If updating the cross zone balancing in the aws elb resource fails, the
error log claimed that the health check configuration failed. Fixed.
2015-01-17 16:20:35 +01:00
Mitchell Hashimoto
ef1f2d5e71
Merge pull request #828 from ceh/go-vet
...
Makefile: add vet target
2015-01-16 13:30:13 -08:00
Emil Hessman
65878791c0
Makefile: add vet target
...
Add a vet target in order to catch suspicious constructs
reported by go vet.
Vet has successfully detected problems in the past,
for example, see
482460c4c8
fc36b1cd94
68a41035a9
7b704fb77d
4f3f85b165
95fa353ee9
4bfe18b40d
Some vet flags are noisy. In particular, the following flags
reports a large amount of generally unharmful constructs:
-assign: check for useless assignments
-composites: check that composite literals used field-keyed
elements
-shadow: check for shadowed variables
-shadowstrict: whether to be strict about shadowing
-unreachable: check for unreachable code
In order to skip running the flags mentioned above, vet is
invoked on a directory basis with 'go tool vet .' since package-
level type-checking with 'go vet' doesn't accept flags.
Hence, each file is vetted in isolation, which is weaker than
package-level type-checking. But nevertheless, it might catch
suspicious constructs that pose a real problem.
The vet target runs the following flags on the entire repo:
-asmdecl: check assembly against Go declarations
-atomic: check for common mistaken usages of the
sync/atomic package
-bool: check for mistakes involving boolean operators
-buildtags: check that +build tags are valid
-copylocks: check that locks are not passed by value
-methods: check that canonically named methods are canonically
defined
-nilfunc: check for comparisons between functions and nil
-printf: check printf-like invocations
-rangeloops: check that range loop variables are used correctly
-shift: check for useless shifts
-structtags: check that struct field tags have canonical format
and apply to exported fields as needed
-unsafeptr: check for misuse of unsafe.Pointer
Now and then, it might make sense to check the output of
VETARGS=-unreachable make vet
manually, just in case it detects several lines of dead code etc.
2015-01-16 22:20:32 +01:00
Mitchell Hashimoto
514f6e7b22
update CHANGELOG
2015-01-16 10:57:21 -08:00
Mitchell Hashimoto
466a54cfe4
Merge pull request #766 from hashicorp/f-exists-api
...
helper/schema: Exists API
2015-01-16 10:56:25 -08:00
Mitchell Hashimoto
41029f8daa
helper/schema: tests for EnvDefaultFunc
...
/cc @jefferai - In case you care
2015-01-16 10:54:43 -08:00
Mitchell Hashimoto
b3e77ef244
Merge pull request #825 from jefferai/envdefault
...
Move duplicated envDefaultFunc out of each provider and into Schema.
2015-01-16 10:50:43 -08:00
Mitchell Hashimoto
fb3f10efb0
command/apply: ask for user variables before validation [GH-736]
2015-01-16 10:46:38 -08:00
Mitchell Hashimoto
63344a37c6
config/lang: verify single quotes syntax error [GH-613]
2015-01-16 10:28:00 -08:00
Mitchell Hashimoto
90138825a2
command/apply: don't init if no args given [GH-780]
...
I really don't know how to unit test this since I don't know what input
triggers this except that it has been reporting a few times in the wild.
2015-01-16 10:22:20 -08:00
Mitchell Hashimoto
91a3405e88
config: understand provisioner blocks in JSON [GH-807]
2015-01-16 10:14:48 -08:00
Mitchell Hashimoto
58649132cf
update CHANGELOG
2015-01-16 09:59:03 -08:00
Mitchell Hashimoto
dc036a0dd0
terraform: fix bug with crash with no providers [GH-786]
2015-01-16 09:56:51 -08:00
Mitchell Hashimoto
a7cad594df
update Makefile to better switch to correct branch on updatedeps
2015-01-16 09:38:20 -08:00
Mitchell Hashimoto
87948b68fc
helper/schema: use interface for equality check
...
/cc @svanharmelen
2015-01-16 09:32:15 -08:00
Jeff Mitchell
f2bd1f45ab
Move duplicated envDefaultFunc out of each provider and into Schema.
2015-01-16 17:25:39 +00:00
Mitchell Hashimoto
8cba4a40f5
Merge pull request #821 from svanharmelen/b-core-haschange-getchange
...
core: fixing two related bugs in HasChange and GetChange
2015-01-16 09:10:06 -08:00
Mitchell Hashimoto
35490f7812
updatedeps should checkout the last checked out branch [GH-816]
2015-01-16 09:07:12 -08:00
Sander van Harmelen
8e7ffc24a5
Merge pull request #823 from svanharmelen/f-provider/cloudstack-managed-fw
...
provider/cloudstack: managed fw and adding/updating docs
2015-01-16 17:53:42 +01:00
Mitchell Hashimoto
fd1156ed05
Merge pull request #815 from gkze/master
...
Add zsh completion support
2015-01-16 08:38:47 -08:00
Mitchell Hashimoto
e32cd396ad
helper/schema: add test for GH-814
2015-01-16 08:37:25 -08:00
Mitchell Hashimoto
b6e591e03f
CL spacing
2015-01-16 08:34:24 -08:00
Mitchell Hashimoto
1525280a49
update cHANGELOG
2015-01-16 08:34:05 -08:00
Mitchell Hashimoto
61e91017be
Merge pull request #804 from PeoplePerHour/f-aws-elb-subnet
...
providers/aws: elb subnet change should not force a new resource
2015-01-16 08:33:32 -08:00
Sander van Harmelen
edc8b91d09
Adding/updating the docs to reflect the changes in the provider
2015-01-16 17:23:27 +01:00