Commit Graph

685 Commits

Author SHA1 Message Date
jba
372035368f allow update 2015-02-18 10:45:12 +01:00
Mitchell Hashimoto
0feb29944c Merge pull request #856 from CashStar/aws_egress
provider/aws: adding support for egress rules in AWS Security Groups
2015-02-17 13:59:47 -08:00
Bryce Kahle
fa8280a56c Add split docs 2015-02-17 13:24:34 -05:00
nevins-b
b7238ca6f2 adding documentation 2015-02-17 13:23:10 -05:00
Mitchell Hashimoto
c5e035361f Merge pull request #896 from bitglue/storage_type
provider/aws: Support storage_type parameter for aws_db_instance
2015-02-17 09:30:03 -08:00
Mitchell Hashimoto
f63aa41d67 Merge pull request #897 from bitglue/apply_method
provider/aws: Implement apply_method for RDS parameters
2015-02-17 09:28:24 -08:00
Mitchell Hashimoto
1fa6141a39 Merge pull request #933 from egarbi/master
docs: Added missing line for aws_launch_configuration resource on AWS provider...
2015-02-17 09:24:50 -08:00
Jeremy Voorhis
c4869ef3b1 Add missing preposition. 2015-02-13 21:46:40 -08:00
Jeremy Voorhis
729939f122 Fill in missing outputs in modules.html.md. 2015-02-13 21:27:54 -08:00
Paul Hinze
fad6f69071 Revert "Add Azure provider"
This reverts commit f561e2a6a8.
2015-02-13 12:53:01 -06:00
Paul Hinze
edaed1fa77 Merge pull request #966 from TimeInc/ig-tags-docs
Add docs for AWS IG tags
2015-02-13 12:34:50 -06:00
jba
101f801846 add aws_vpc_peering_connection 2015-02-12 10:45:29 +01:00
Radek Simko
3366f1924f Add docs for AWS IG tags 2015-02-11 13:33:59 +00:00
Dave Cunningham
66ad26f19a Merge branch 'master' into oauth2 2015-02-11 00:37:13 -05:00
jba
3b0b41c9a1 allow vpc_peering_connection_id in aws_route_table 2015-02-10 17:50:29 +01:00
Phil Frost
81b5c238ef Clarify usage of aws_elb
Address confusion regarding ELB in VPC or EC2-classic. See #958.
2015-02-10 11:13:54 -05:00
Paul Hinze
448edd1a83 Merge pull request #959 from BashtonLtd/gce_instance_template
GCE instance template support
2015-02-10 08:57:45 -06:00
David Watson
7df536345c Add docs for google Instance Template. 2015-02-10 10:41:21 +00:00
Dave Cunningham
26b90c10a0 Merge branch 'master' into gcp_image 2015-02-10 03:25:45 -05:00
Dave Cunningham
e898daf573 Merge branch 'master' into oauth2 2015-02-09 20:07:36 -05:00
Paul Hinze
6e27da8c47 Merge pull request #937 from sparkprime/pr_network_interface
Deprecated 'network', introduce 'network_interface'
2015-02-09 18:49:56 -06:00
Amadeus Demarzi
61536cb1f8 Attach Chainable timers to Engine render loop
Previous to this commit, the Chainable class which is responsible for
iterating on the sequence of events in the intro Terraform animation,
was using setTimeout and thus could result in very messed up race
conditions when triggering physics changes.

This commit attaches the .wait timers to the Engine.render loop which
should enable everything to stay in sync.
2015-02-06 15:28:26 -08:00
Julien Vey
33eebbed51 provider/gce: Add description in firewall resource 2015-02-06 13:33:02 +01:00
Dave Cunningham
b385093502 Deprecated 'network', introduce 'network_interface' 2015-02-06 03:21:22 -05:00
Enrique Garbi
2b3015f66a Added missing line for aws_launch_configuration resource on AWS provider docs 2015-02-05 17:05:14 +00:00
Paul Hinze
f852a01c22 providers/aws: docs for aws_main_route_table_association 2015-02-03 15:13:15 -06:00
Paul Hinze
44759903fa Merge pull request #895 from hashicorp/588-gcp-improvements
Multiple gcp improvements and new resources
2015-01-30 16:49:22 -06:00
Dave Cunningham
12db8bc9d3 Merge branch 'master' into oauth2 2015-01-30 17:48:49 -05:00
Ferran Rodenas
f561e2a6a8 Add Azure provider 2015-01-30 16:32:35 -06:00
Dave Cunningham
1d41800cd2 Add docs 2015-01-30 15:12:13 -05:00
Phil Frost
8eb5418c4a Implement apply_method for RDS parameters
This is necessary to support creating parameter groups with parameters
that require a reboot, since the RDS API will return an error when
attempting to set those parameters with ApplyMethod "immediate".
2015-01-30 13:06:15 -05:00
Phil Frost
bfaf8ccee6 Support storage_type parameter for aws_db_instance
This allows provisioning "gp2" (general purpose SSD) storage for DB
instances.
2015-01-30 13:01:10 -05:00
Dave Cunningham
6046647f38 Multiple gcp improvements and new resources 2015-01-30 10:32:35 -06:00
Dave Cunningham
e85c7113fa Allow specifying project or full URL when specifying image 2015-01-29 20:00:02 -05:00
Paul Hinze
24c3718ac6 Merge pull request #884 from hashicorp/452-google-secrets-file
[REPACK] #452 providers/google: remove deprecated client secrets file
2015-01-28 17:21:11 -06:00
stungtoat
d3814d6180 providers/google: remove secrets file
fixes #452
2015-01-28 15:47:49 -06:00
Phil Frost
254b25a64f Fix aws_db_instance to not recreate each time
Several of the arguments were optional, and if omitted, they are
calculated. Mark them as such in the schema to avoid triggering an
update.

Go back to storing the password in the state file. Without doing so,
there's no way for Terraform to know the password has changed. It should
be hashed, but then interpolating the password yields a hash instead of
the password.

Make the `name` parameter optional. It's not required in any engine, and
in some (MS SQL Server) it's not allowed at all.

Drop the `skip_final_snapshot` argument. If `final_snapshot_identifier`
isn't specified, then don't make a final snapshot. As things were, it
was possible to create a resource with neither of these arguments
specified which would later fail when it was to be deleted since the RDS
API requires exactly one of the two.

Resolves issue #689.
2015-01-28 12:03:26 -05:00
Paul Hinze
c01f1a5ef0 Merge pull request #864 from paystee/doc_boolean_syntax
docs: update available boolean values
2015-01-27 19:40:13 -06:00
Seth Vargo
918ba4c3be Merge pull request #851 from hashicorp/sethvargo/aws_envvars
Use standard AWS environment variables
2015-01-25 13:29:32 -05:00
Anton Tereshchenkov
819bc2b032 docs: update available boolean values 2015-01-25 12:38:15 +08:00
Paul Hinze
dec0c467e1 docs: add example of using variables with count
closes #861
2015-01-24 18:29:36 -06:00
Sonia Hamilton
6b9f4e09b0 dnsmadeeasy documentation 2015-01-23 17:33:40 +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
038d241043 Update the documentation to read the new AWS environment variables 2015-01-22 16:09:25 -05: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
Sander van Harmelen
edc8b91d09 Adding/updating the docs to reflect the changes in the provider 2015-01-16 17:23:27 +01:00
Emil Hessman
0cfbf4d8d9 website: use lists throughout the docs instead of array 2015-01-14 18:38:08 +01:00
Mitchell Hashimoto
577e2420b0 Revert "docs: consistent use of array configuration syntax"
This reverts commit 4893eb8b55.
2015-01-14 09:28:25 -08:00
Mitchell Hashimoto
152e72ffa6 Merge pull request #773 from ceh/issue-691
helper/schema: fix panic when validating composite schema type
2015-01-14 09:28:11 -08:00
Sander van Harmelen
68a6e7197f Adding some needed references and updated a couple of passes 2015-01-13 11:28:05 +01:00
Emil Hessman
4893eb8b55 docs: consistent use of array configuration syntax
The Terraform configuration syntax defines what arrays are.
Use the word array consistently throughout the documentation
instead of list.

The corresponding JSON datatype is called array as well, and
since the Terraform configuration syntax is interoperable with
JSON it makes sense to use the term array to describe them.
2015-01-13 06:59:12 +01:00
Mitchell Hashimoto
48b9614556 helper/schema: Exists API 2015-01-10 15:39:29 -08:00
Justin Clayton
3e722d13ee Clarify re: Openstack support
This is a reword of #760 at @mitchellh 's request.
2015-01-08 15:58:56 -08:00
Sören Blom
efca6b0e8a only non-default VPC security groups are referenced by ID. 2015-01-07 12:52:20 +01:00
Armon Dadgar
eef75a7a2a Merge pull request #695 from moredip/aws_key_pair-resource
add aws_key_pair resource
2015-01-06 10:46:58 -08:00
Armon Dadgar
0ffc11c885 Merge pull request #704 from yahyapo/master
[AWS] Adding default network ACL ID and default security group ID to VPC reference attributes
2015-01-06 10:29:16 -08:00
Pete Hodgson
55347c0e59 Add docs for key_pair AWS resource 2015-01-05 21:45:05 -08:00
Pete Hodgson
ce4f4574fb Fix sidebar highlighting bug for aws_network_acl 2015-01-05 21:45:04 -08:00
Armon Dadgar
34d5464c63 Merge pull request #725 from jgoldschrafe/feature-google-compute-service-accounts
Support service accounts on GCE instances
2015-01-05 11:30:38 -08:00
Emil Hessman
28d39cd0bc website: address spelling mistakes, casing and links 2015-01-03 19:31:53 +01:00
Jeff Goldschrafe
d3081e0da8 Support service accounts on GCE instances
Update the Google Compute Engine provider to add support for service
accounts on `google_compute_instance`. Both gcloud shorthand (`compute-ro`,
`storage-ro`, etc.) and OAuth2 API endpoints are supported.

This feature is currently limited to a single service account (supporting
multiple scopes) and an automatically-generated service account email.
2015-01-02 01:25:19 -05:00
Yahya Poonawala
7e4f417107 Updating markdown file for VPC to reflect addition of default network acl id and security group id. 2014-12-23 11:49:07 +05:30
Armon Dadgar
f6bfbac3d1 website: Add link to heroku_cert in the docs 2014-12-15 12:14:00 -08:00
Armon Dadgar
f923368fc5 Merge pull request #672 from plan3-labs/heroku_cert_support
Heroku SSL certificate support
2014-12-15 12:12:57 -08:00
Jakub Janczak
3c0e9970e5 Heroku SSL certificate support added 2014-12-15 12:21:47 +01:00
Don Johnson
e02c62347d Usage info for graph command was actually that of output 2014-12-14 17:21:43 +09:00
Armon Dadgar
7a3b4fa7ce Merge pull request #648 from yahyapo/master
Adding tag support to AWS EC2 route table resource.
2014-12-10 19:24:38 -08:00
Sander van Harmelen
17bc60fb68 Merge pull request #645 from svanharmelen/f-cloudstack-provider
First release of a provider for CloudStack
2014-12-10 22:33:09 +01:00
Armon Dadgar
1e8b930b83 website: Adding newline 2014-12-10 13:27:11 -08:00
Armon Dadgar
4e503d1d64 website: Adding documentation for new commands 2014-12-10 13:27:11 -08:00
Armon Dadgar
8ceabbd8e6 website: Document missing flag 2014-12-10 13:27:11 -08:00
Armon Dadgar
5f35c7852f website: Update CLI flags for existing commands 2014-12-10 13:27:11 -08:00
Armon Dadgar
493eaa3f21 website: add links to new commands 2014-12-10 13:27:11 -08:00
Armon Dadgar
c4de19c740 website: Document key sanitization 2014-12-10 13:27:06 -08:00
Armon Dadgar
ef57437a6e website: Update artifact docs 2014-12-10 13:27:05 -08:00
Armon Dadgar
15de5c3cf9 website: Document the atlas provider 2014-12-10 13:27:05 -08:00
Sander van Harmelen
4910423d83 First release of a provider for CloudStack
Of course not all resources are covered by this first release, but
there should be enough resources available to handle most common
operations.

Tests and docs are included.
2014-12-10 22:20:52 +01:00
Armon Dadgar
9668c8292f Merge pull request #637 from snehaso/vpc_tenanct
[AWS] added vpc instance_tenancy
2014-12-10 12:58:50 -08:00
Yahya Poonawala
b595c73d42 Adding tag support to AWS EC2 route table resource. 2014-12-11 00:03:13 +05:30
Sneha Somwanshi
89f1a38f5b added vpc tenancy argument 2014-12-10 16:10:00 +05:30
Sneha Somwanshi
60d18e1eb8 doc for cross zone load balancing 2014-12-10 12:53:51 +05:30
Armon Dadgar
57fd308e93 website: Correct network_acl docs 2014-12-07 23:53:21 -08:00
Armon Dadgar
38697d6b4c aws: Making security group ingress rules optional 2014-12-07 23:52:04 -08:00
Armon Dadgar
fae29f4685 Merge pull request #506 from muralimadhu/master
Support termination policies in aws auto scaling group
2014-12-07 23:35:33 -08:00
Armon Dadgar
477efb4fa4 website: Docs for aws_network_acl 2014-12-07 23:30:36 -08:00
Armon Dadgar
7182e5618e Merge pull request #612 from MerlinDMC/feature/aws_block_device_virtual_name
allow setting the block device virtual_name
2014-12-03 12:08:07 -08:00
Alan LaMielle
3488afa6ae Update consul.html.markdown
Fixes typo: s/features/feature
2014-11-22 21:09:39 -08:00
Alan LaMielle
c6bf21baf0 Update variables.html.md
Fixes typo: s/anythiing/anything
2014-11-22 17:55:20 -08:00
Daniel Malon
1e3065ae11 allow setting the block device virtual_name 2014-11-22 09:50:22 +00:00
Dave Dash
5eb216226b Update output.html.markdown 2014-11-20 23:00:02 -08:00
Armon Dadgar
e53bf23c0c provider/aws: Fixing merge conflict 2014-11-19 17:17:18 -08:00
Armon Dadgar
735e83a146 Merge branch 'master' of https://github.com/serenitus/terraform into serenitus-master 2014-11-19 17:15:15 -08:00
Armon Dadgar
4cdeb4b846 Merge pull request #554 from rcostanzo/f-array-index
Added an element interpolation lookup function for accessing a specific ...
2014-11-19 16:02:34 -08:00
Armon Dadgar
41f2e7f98e Merge pull request #545 from rcostanzo/f-parameter-group
Added new parameter_group_name parameter for creating an RDS DB instance
2014-11-19 16:01:11 -08:00
Armon Dadgar
38aec9f20b provide/aws: Document the block device 2014-11-19 15:59:29 -08:00
Chavez
25513f421f Modules documentation
* Re-iterate 'terraform get' in getting started for modules
2014-11-18 10:25:39 -08:00
Seth Vargo
c1a6a48892 Update version of middleman-hashicorp 2014-11-17 20:54:29 -05:00
Seth Vargo
70a7d14e19 Fix image links 2014-11-17 20:33:49 -05:00
Madhu
5ed2ee8f37 Merge branch 'master' of https://github.com/hashicorp/terraform 2014-11-10 18:44:23 -08:00
Rob Costanzo
8da91e9636 Added an element interpolation lookup function for accessing a specific index from a list with splat variables 2014-11-07 10:24:21 -08:00
Rob Costanzo
a14da63a39 Fixed bug with final_snapshot_identifier and skip_final_snapshot and removed apply_method as an option for now and am only supporting immediate mode 2014-11-05 11:03:06 -08:00
Rob Costanzo
de16b10555 Added new aws_db_parameter_group resource for creating RDS DB Parameter Groups.
Added plumbing to allow an optional DBParameterGroupName to be passed when creating an RDS DB instance.
2014-11-05 11:03:06 -08:00
Simon Turvey
31132f1ded Add tag support to AWS subnets 2014-11-02 12:30:33 -08:00
balser
e915807efe Fix typo in aws_db_instance example 2014-10-27 17:48:03 -04:00
Madhu
7d4064ca03 Termination Policy Support 2014-10-23 14:58:54 -07:00
Seth Vargo
66c0558f8d Use non-protocol-specific URL for fonts 2014-10-23 12:30:04 -04:00
Seth Vargo
4a98c921a8 Load Google fonts over SSL 2014-10-23 12:00:37 -04:00
Jack Pearkes
04a20f9165 website: make bintray logo https 2014-10-23 11:45:43 -04:00
Seth Vargo
9d3758abd8 Fix broken YAML 2014-10-22 17:47:44 -04:00
Seth Vargo
9ac9ab6706 Use the built-in alert helpers 2014-10-22 10:01:17 -04:00
Seth Vargo
073a0f76c5 Add meta descriptions to all pages 2014-10-21 23:21:56 -04:00
Seth Vargo
79aa19a121 Remove version file 2014-10-21 23:21:23 -04:00
Seth Vargo
342e196967 Set base_url 2014-10-21 23:21:19 -04:00
Seth Vargo
29aa947c3b Do not index the 404 page 2014-10-21 23:21:14 -04:00
Seth Vargo
574746b2aa Push javascript to the bottom, read description 2014-10-21 23:20:52 -04:00
Seth Vargo
e6feb90121 Add robots.txt 2014-10-21 23:20:26 -04:00
Seth Vargo
fe6e7e2a01 Add sitemap 2014-10-21 23:20:21 -04:00
Seth Vargo
0474da5507 Remove unused CSS and Javascript 2014-10-21 23:20:16 -04:00
Seth Vargo
7200348d1a Update version of middleman-hashicorp 2014-10-21 22:48:50 -04:00
Seth Vargo
4f475cb35e Remove unused font files 2014-10-21 22:48:43 -04:00
Mitchell Hashimoto
57504e26d0 website: add a dumb version.txt 2014-10-21 11:21:13 -07:00
Matthieu Fronton
d901d62138 website: update arg description with actual expected informations (but now arg name not relevant anymore) 2014-10-21 08:10:50 -04:00
Matthieu Fronton
e7925bad15 website: fix misspelled argument name for aws_db_instance resource 2014-10-21 07:52:32 -04:00
Mitchell Hashimoto
d5b418d82b Merge pull request #402 from longnguyen11288/add-sg-tags
Added security group tagging
2014-10-20 23:18:22 -07:00
Mitchell Hashimoto
afec1e907b website: update docs for Heorku change 2014-10-20 23:17:44 -07:00
Armon Dadgar
74ad2797cf Merge pull request #433 from jpluscplusm/patch-1
Website: Update aws-count example intro page with correct github link
2014-10-20 10:53:52 -07:00
Ben Gesoff
0d79a0f31e Fixed typo
The wrong form of "its" was used. Changed to possessive pronoun instead of contracted verb.
2014-10-19 22:10:45 +01:00
JCM
e6b94d1f7b Update aws-count example with correct github link 2014-10-16 22:49:06 +01:00
Igor Vuk
08d017057a Fix a typo: The -> This 2014-10-16 18:16:52 +02:00
Paul Lewis
3f5a9b70d8 Removing duplicate example and unclosed code block 2014-10-14 17:47:23 -04:00
Long Nguyen
eef3197ba0 Added security group tagging 2014-10-14 17:11:09 -04:00
Clint Shryock
8b45abc1b2 document the organization field 2014-10-14 15:50:10 -05:00
Seth Vargo
164e5db5c9 Double quotes kinda people 2014-10-14 16:06:30 -04:00
Seth Vargo
e0ea52be5c Fix images on markdown pages 2014-10-14 16:06:02 -04:00
Mitchell Hashimoto
79e3ced3b4 Update gemfile 2014-10-14 12:57:11 -07:00
Mitchell Hashimoto
52589f51b7 Update lock to get right version 2014-10-14 12:50:42 -07:00
Mitchell Hashimoto
2729dcab77 website: don't change the Ruby version 2014-10-14 12:46:04 -07:00
Mitchell Hashimoto
af43cca8ff website: update Ruby version 2014-10-14 12:43:33 -07:00
Mitchell Hashimoto
58757d6e96 website: update website to set version 2014-10-14 12:40:39 -07:00
Mitchell Hashimoto
6fea336c09 Merge pull request #396 from hashicorp/f-consul-schema
Port Consul provider to new helper.Schema, add Token support
2014-10-14 12:21:23 -07:00
Mitchell Hashimoto
dad141ec08 Merge pull request #397 from seanherron/ec2-tags
Expands AWS tagging to cover EC2 instances
2014-10-14 12:13:22 -07:00
Mitchell Hashimoto
0bc21a928d website: move all examples into the GitHub repo 2014-10-13 22:18:45 -07:00
Mitchell Hashimoto
104ed0fb9b website: update examples to use new module system 2014-10-13 18:07:54 -07:00
Mitchell Hashimoto
dfbd47eb05 Merge pull request #395 from hashicorp/sethvargo/middleman-hashicorp
Update to middleman-hashicorp
2014-10-13 17:47:33 -07:00
Sean Herron
3e16190e69 Expands AWS tagging to cover EC2 instances 2014-10-13 16:55:59 -04:00
Mitchell Hashimoto
d7e77202ba website: started updating examples 2014-10-13 12:14:56 -07:00
Mitchell Hashimoto
9ccc8aebf1 website: update getting started guide for TF 0.3 features 2014-10-13 11:57:43 -07:00
Armon Dadgar
269c5be738 provider/Consul: Support Token. Fixes #378 2014-10-13 11:42:40 -07:00
Seth Vargo
7cde76abae Update to middleman-hashicorp 2014-10-13 12:44:38 -04:00
Mitchell Hashimoto
6ddcc2ebf8 Merge pull request #309 from alekstorm/aws-db-instance-password
Store aws_db_instance.password in tfstate, change to AttrTypeCreate
2014-10-11 12:34:52 -07:00
Mitchell Hashimoto
e827180887 providers/aws: main_route_table_id attribute for VPC [GH-193] 2014-10-10 16:57:32 -07:00
Mitchell Hashimoto
8aae8099e8 website: update the docs more to say more 2014-10-09 21:25:59 -07:00
Mitchell Hashimoto
f558f7a0c5 website: document the join function 2014-10-09 21:23:49 -07:00
Mitchell Hashimoto
4a8021ff8e website: update docs for tags on VPC 2014-10-08 23:46:36 -07:00
Mitchell Hashimoto
c7088eb82a website: update docs for GH-371 2014-10-08 10:54:34 -07:00
Mitchell Hashimoto
9e953c9908 Merge pull request #372 from jgoldschrafe/feature-google-compute-disk-types
Configurable disk types for GCE
2014-10-08 10:50:38 -07:00
Mitchell Hashimoto
65a054b7c2 Merge pull request #375 from jgoldschrafe/feature-google-compute-ip-forward
providers/google: Support IP forwarding on GCE instances
2014-10-08 10:31:41 -07:00
Mitchell Hashimoto
770d62e588 website: document path variables 2014-10-07 20:15:08 -07:00
Jeff Goldschrafe
88a020e0b5 Support IP forwarding on GCE instances
This change exposes the CanIpForward property of the Instance, allowing
users to create instances that are allowed to function as NAT or VPN
gateways.
2014-10-07 12:28:20 -04:00
Jeff Goldschrafe
ddfdfebcc5 Configurable disk types for GCE
Supports configuring the disk type for Google Compute Engine disk
resources. Both `google_compute_disk` and `google_compute_instance`
disk types are supported.

Resolves #351.
2014-10-07 01:40:20 -04:00
Jack Pearkes
0fa5d160a2 Merge pull request #348 from cfortier2/awsdbsubnet-doc
add subnet_group_name for aws db instance doc
2014-10-04 10:00:20 -07:00
Seth Vargo
03431efd65 Remove unnecessary files 2014-10-03 17:53:55 -07:00
Seth Vargo
6298bab5a2 Update website to use latest middleman 2014-10-03 17:51:13 -07:00
Mitchell Hashimoto
55ab043036 website: update docs for count.index 2014-10-02 22:11:53 -07:00
Panagiotis Moustafellos
d01418270a Add listener.ssl_certificate_id support to AWS ELB (@jpadvo [GH-176]) 2014-10-02 05:19:36 +03:00
cfortier2
77edd9d8d8 add subnet_group_name for aws db instance doc 2014-10-01 11:42:48 -04:00
Mitchell Hashimoto
d4a2010983 website: destroy command 2014-09-30 22:08:32 -07:00
Mitchell Hashimoto
dbc890e401 providers/aws: add self to ingress [GH-219] 2014-09-30 14:19:16 -07:00
Mitchell Hashimoto
e3c7ccb1d7 Update changelog 2014-09-30 13:30:15 -07:00
Mitchell Hashimoto
a621525741 Merge pull request #317 from hashicorp/f-create-before
Adding support for `lifecycle` and `create_before_destroy`
2014-09-30 13:17:41 -07:00
Armon Dadgar
fc324464b8 website: Fixing typo 2014-09-30 11:41:58 -07:00
Spencer Krum
0f32eefb2b Docs Fixup 2014-09-30 11:32:25 -07:00
Mitchell Hashimoto
0649c62616 website: update apply docs 2014-09-29 15:58:45 -07:00
Armon Dadgar
8d5d7c32c8 website: Document lifecycle 2014-09-29 15:20:03 -07:00
Mitchell Hashimoto
5da86c1279 Merge pull request #319 from lflux/aws-instance-iam-support
Add IAM Instance profile support to AWS instance provider
2014-09-27 12:43:18 -07:00
Mitchell Hashimoto
1c73f4e703 Update CHANGELOG 2014-09-27 12:42:46 -07:00
Mitchell Hashimoto
fe4f53eb5b enable init command 2014-09-27 12:31:38 -07:00
Mitchell Hashimoto
f760c14332 website: document init 2014-09-27 12:28:07 -07:00
Mitchell Hashimoto
62ec0a3b4a website: update website for subdirs 2014-09-26 14:58:41 -07:00
Mitchell Hashimoto
7aa30fdf25 config: support subdirectories with the "//" syntax 2014-09-26 14:56:04 -07:00
Mitchell Hashimoto
03f630bdb8 website: document modules 2014-09-26 14:23:38 -07:00
Ian Delahorne
9f91c4e8c3 Add IAM Instance profile support to AWS instance provider 2014-09-23 13:06:30 -05:00
Jeff Goldschrafe
0dab8cb2c6 Update instructions for auth JSON files 2014-09-22 15:53:44 -04:00
Alek Storm
c7f219a781 Store aws_db_instance.password in tfstate, change to AttrTypeCreate 2014-09-18 13:55:43 -07:00
Jack Pearkes
002e640d0b Merge pull request #259 from hden/vpc_zone_identifier
allow vpc_zone_identifier in aws_autoscaling_group
2014-09-16 10:44:32 -04:00
Jack Pearkes
9fc775e41c providers/aws: fix tests for subnet map_public_ip, add docs
This working depends on merging mitchellh/goamz#109

Related: #285

cc/ @hden
2014-09-16 10:37:22 -04:00
Jack Pearkes
2a893294e3 Merge pull request #296 from jmartelletti/master
Documentation fixes
2014-09-16 09:55:22 -04:00
Jack Pearkes
284cf57386 website: fix typo 2014-09-16 09:54:53 -04:00
Jack Pearkes
f16485664d website: document db_subnet_group
cc/ @buth
2014-09-16 09:53:41 -04:00
James Martelletti
1f08ddf27d Change to valid CIDR address 2014-09-16 21:41:10 +10:00
James Martelletti
a8947b17cd Provide all required parameters in example 2014-09-16 21:40:46 +10:00
James Martelletti
78e072e0b6 source_dest_check defaults to true in the code 2014-09-16 21:40:16 +10:00
Matthew Leventi
ab311e8401 Update provider.html.md
Fix typo
2014-09-13 21:58:54 -07:00
Ben Smith
597a3bfddd small typo 2014-09-09 14:29:05 -07:00
Godefroid Chapelle
41e13c0189 Fix typo 2014-09-09 15:25:38 +02:00
Mitchell Hashimoto
c7e1528a69 website: update docs for google 2014-09-07 16:10:56 -07:00
Mitchell Hashimoto
d332e7680e Merge pull request #256 from jlund/use-cases-updates
website: Fix some typos and grammar mistakes in the website's Use Cases section
2014-09-07 16:08:08 -07:00
Mitchell Hashimoto
73de250d5f Merge pull request #257 from jlund/versus-updates
website: Cleanup of the 'Terraform vs. Custom Solutions' section
2014-09-07 16:07:44 -07:00
Mitchell Hashimoto
b3c5b848f9 website: update docs for GH-260] 2014-09-07 16:03:48 -07:00