Commit Graph

7687 Commits

Author SHA1 Message Date
Clint
5b2230588a Merge pull request #4260 from stack72/aws-db_security_group-tags
provider/aws: Adding support for Tags to DB SecurityGroup
2015-12-11 08:48:59 -06:00
Clint
a59ffd7e9e Update CHANGELOG.md 2015-12-11 08:34:23 -06:00
Clint
991d58c6d2 Merge pull request #4261 from stack72/aws-db_subnet_group-arn
provider/aws: DB Subnet group arn output
2015-12-11 08:34:05 -06:00
stack72
dec5a27f19 Adding the ARN as an output of the DB Subnet Group 2015-12-11 12:39:15 +00:00
stack72
474d6080f0 Adding support for Tags to the DB Security Group 2015-12-11 12:28:24 +00:00
James Nugent
3330da00b9 Update CHANGELOG.md 2015-12-10 18:39:47 -05:00
James Nugent
fb4878cf37 Merge pull request #3853 from stack72/f-aws-db-instance-omit-snapshot
provider/aws: add DB Instance skip_final_snapshot
2015-12-10 18:38:11 -05:00
stack72
2b0c7aa4e9 Making the changes to db_instance skip_final_snapshot on the feedback from @catsby 2015-12-10 23:21:36 +00:00
James Nugent
db65fc9f0c Merge pull request #4250 from hashicorp/f-elasticache-reduce-doc
provider/aws: Add note about cluster size reduction
2015-12-10 15:56:04 -05:00
James Nugent
c5d066b828 provider/aws: Add note about cluster size reduction 2015-12-10 15:35:46 -05:00
James Nugent
69c839d2ae Update CHANGELOG.md 2015-12-10 15:33:38 -05:00
James Nugent
2fecc72fb0 Merge pull request #3809 from stack72/f-aws-elasticache-cache-nodes-reduction
provider/aws: Ability to reduce nodes in an ElastiCache cluster
2015-12-10 15:30:09 -05:00
stack72
6082e3e732 Changing the db_instance to throw an error is a final snapshot is required but yet no identified is given 2015-12-10 19:11:47 +00:00
stack72
5796b13373 Adding skip_final_snapshop bool to th db_instance. This will allow us to specify whether a snapshot is needed directly rather than checking for an empty string 2015-12-10 19:11:47 +00:00
James Nugent
a6e8590cd3 Update CHANGELOG.md 2015-12-10 14:09:47 -05:00
James Nugent
a213fe121d Merge pull request #4245 from grisha/esd_fix
Fix a bug whereby AWS elasticsearch domain access_policies will always appear changed
2015-12-10 14:08:38 -05:00
Paul Hinze
38d9b29026 Merge pull request #4145 from hashicorp/phinze/vcenter-server-backcompat
provider/vsphere: restore vcenter_server as deprecated field
2015-12-10 12:29:15 -06:00
James Nugent
7f734d58cd Merge pull request #4247 from hashicorp/b-destroy-check-state
testing: Use a copy of pre-destroy state in destroy check
2015-12-10 13:22:07 -05:00
James Nugent
e976d6e787 testing: Use a copy of pre-destroy state in destroy check
In the acceptance testing framework, it is neccessary to provide a copy
of the state _before_ the destroy is applied to the check in order that
it can loop over resources to verify their destruction. This patch makes
a deep copy of the state prior to applying test steps which have the
Destroy option set and then passes that to the destroy check.
2015-12-10 13:14:17 -05:00
Paul Hinze
cfea7c8e2d provider/vsphere: restore vcenter_server as deprecated field
As promised in my comment in #3718, this preserves backwards
compatibility while warning users of the new proper name for the field.
2015-12-10 12:11:51 -06:00
Paul Hinze
b11966bca6 Update CHANGELOG.md 2015-12-10 12:02:55 -06:00
Paul Hinze
231f0cb474 Merge pull request #4035 from rakutentech/fix-ipv6-bug
provider/vsphere: Change ip_address parameter for ipv6 support
2015-12-10 12:02:11 -06:00
Clint
21aa9dd5ba Update CHANGELOG.md 2015-12-10 08:56:17 -06:00
Clint
eb3840c574 Merge pull request #4242 from hashicorp/b-aws-lc-guard
provider/aws: Fix missing AMI issue with Launch Configurations
2015-12-10 08:55:49 -06:00
Paul Hinze
b23e6ed57e Update CHANGELOG.md 2015-12-10 08:38:50 -06:00
Paul Hinze
bf9af17e4f Merge pull request #4244 from hashicorp/phinze/resource-arity-errmsg
config: friendlier error message on resource arity mismatch
2015-12-10 08:38:04 -06:00
Takaaki Furukawa
68ac4bceaf provider/vsphere: Change ip_address parameter to ipv4_address and ipv6_address for ipv6 support 2015-12-10 18:28:24 +09:00
Grisha Trubetskoy
6fbfd99ace Fix a bug whereby AWS elasticsearch domain access_policy will
always appear changed because of a missing normalizeJson().
2015-12-09 23:29:38 -05:00
Martin Atkins
07f398fb3b Update CHANGELOG.md 2015-12-09 18:06:09 -08:00
Martin Atkins
b679bb2b31 Merge pull request #4241 from b-ryan/fix/opsworks-ssh-key-write-only
Make the OpsWorks cookbooks SSH key write only
2015-12-09 18:04:58 -08:00
Paul Hinze
b6626eed57 config: friendlier error message on resource arity mismatch
closes #2072
2015-12-09 18:05:49 -06:00
clint shryock
e4dba86098 provider/aws: Fix missing AMI issue with Launch Configurations 2015-12-09 16:39:03 -06:00
Buck Ryan
921944c956 Make the OpsWorks cookbooks SSH key write only
Fixes #3635

This follows the suggestion of @apparentlymart in
https://github.com/hashicorp/terraform/issues/3635#issuecomment-151000068
to fix the issue of OpsWorks stacks always complaining about the custom
cookbooks SSH key needing to be changed.

Functional tests:

* Created a new stack and gave it an SSH key. The key was written to
  OpsWorks properly.
* Ran "plan" again and terraform indicated it needed to change the SSH
  key, which is expected since terraform cannot read what the existing
  SSH is.
* Removed the key from my resource and this time, "plan" did not have
  any changes. The `tfstate` file indicated the SSH key was "" (empty
  string).
* Changed an unrelated property of the stack. Previously this was not
  working for me due to terraform attempting to change the SSH key.
2015-12-09 16:58:05 -05:00
Clint
981add77a3 Merge pull request #4238 from hashicorp/b-dyn-docs
provider/dyn: Add Dyn to the documentation sidebar
2015-12-09 14:25:42 -06:00
clint shryock
5b036fbf4f provider/dyn: Add Dyn to the documentation sidebar 2015-12-09 14:05:18 -06:00
Clint
385adb734a Update CHANGELOG.md 2015-12-09 13:31:41 -06:00
Clint
5a5df8b6bb Update CHANGELOG.md 2015-12-09 13:30:45 -06:00
Clint
078280f1ea Merge pull request #4155 from hashicorp/b-aws-db-replica-storage
providers/aws: Update DB Replica to honor storage type
2015-12-09 13:30:23 -06:00
Clint
501a016692 Merge pull request #4127 from hashicorp/aws-vet
Small updates to AWS provider to make go vet happy
2015-12-09 13:30:07 -06:00
clint shryock
6015874273 providers/aws: Update DB Replica to honor storage type
DB Replica can be of a different storage type, but we were skipping that part.
Note that they are created as the default (or as the primary?) initially,
and then modified to be of the correct type
2015-12-09 13:24:10 -06:00
Clint
1b6f3558bb Update CHANGELOG.md 2015-12-09 11:43:23 -06:00
Clint
9cc5e52cf0 Merge pull request #4167 from stack72/aws-security_group_name_prefix
provider/aws: securitygroup name_prefix
2015-12-09 11:42:34 -06:00
Clint
b6e0b0187b Update CHANGELOG.md 2015-12-09 10:51:54 -06:00
Clint
14f8c363bd Update CHANGELOG.md 2015-12-09 10:51:43 -06:00
Clint
8e20552d44 Merge pull request #4236 from hashicorp/b-aws-s3-hosted-zone-update
providers/aws: Update Hosted Zones to fix issue with eu-central
2015-12-09 10:51:02 -06:00
clint shryock
bd22c77c1f providers/aws: Update Hosted Zones to fix issue with eu-central 2015-12-09 10:44:22 -06:00
Paul Hinze
dac7d7b0ca Update CHANGELOG.md 2015-12-09 10:08:54 -06:00
Paul Hinze
5630f9581f Merge pull request #4196 from kristinn/create-disk-before-startup
provider/vsphere: Create and attach additional disks before bootup.
2015-12-09 10:06:34 -06:00
Paul Hinze
9da2c0a556 Update CHANGELOG.md 2015-12-09 09:56:17 -06:00
Clint
c570af3ec2 Update CHANGELOG.md 2015-12-09 09:55:20 -06:00