Commit Graph

906 Commits

Author SHA1 Message Date
Jake Champlin
05654b02a2 Merge pull request #14078 from justincampbell/heroku-pipelines
provider/heroku: Add resources for Heroku Pipelines
2017-05-01 10:52:54 -04:00
Radek Simko
143c8bbdfe docs/aws: Add undocumented fields to all WAF resources (#14091)
* docs/aws: Add undocumented fields to all WAF resources

* docs/aws: Alphabetically sort WAF resources
2017-05-01 15:23:30 +01:00
Justin Campbell
ccb1b7ebec website: Add docs for Heroku Pipeline resources 2017-05-01 10:15:08 -04:00
stack72
be002d9345 provider/aws: Add documentation for the EFS File System DataSource 2017-04-29 11:38:10 +12:00
Clint
7c59f7e282 provider/aws: Add EMR Security Configuration Resource (#14080)
* provider/aws: Add EMR Security Configuration

* provider/aws: Document EMR security configuration

* small refactoring and add an import test
2017-04-28 16:28:49 -05:00
clint shryock
d6560b96d7 provider/heroku: Update docs to include heroku-app-feature 2017-04-27 09:59:54 -05:00
Radek Simko
42c7d00568 docs/digitalocean: Add image data source to sidebar (#14030) 2017-04-27 11:55:25 +01:00
Matthew Frahry
aed450c4b0 Update OPC to Oracle Public Cloud 2017-04-26 14:46:54 -06:00
stack72
fd48f91876 provider/gitlab: Addition of the documentation link for gitlab to sidebar
```
% make testacc TEST=./builtin/providers/gitlab
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/04/27 05:37:02 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/gitlab -v  -timeout 120m
=== RUN   TestProvider
--- PASS: TestProvider (0.00s)
=== RUN   TestProvider_impl
--- PASS: TestProvider_impl (0.00s)
=== RUN   TestAccGitlabProject_basic
--- PASS: TestAccGitlabProject_basic (41.11s)
=== RUN   TestGitlab_validation
--- PASS: TestGitlab_validation (0.00s)
=== RUN   TestGitlab_visbilityHelpers
--- PASS: TestGitlab_visbilityHelpers (0.00s)
PASS
ok  	github.com/hashicorp/terraform/builtin/providers/gitlab	41.125s
```
2017-04-27 05:44:05 +12:00
stack72
7448e832b3 provider/alicloud: Migrating documentation from sidebar regex to strings 2017-04-27 01:03:20 +12:00
Jake Champlin
22ed31c7a6 Merge pull request #13921 from bernerdschaefer/bs-create-space
providers/heroku: add heroku_space resource
2017-04-25 18:43:42 -04:00
Quentin Machu
f721608e4e provider/template: Add a 'dir' resource to template entire directories
When TerraForm is used to configure and deploy infrastructure
applications that require dozens templated files, such as Kubernetes, it
becomes extremely burdensome to template them individually: each of them
requires a data source block as well as an upload/export (file
provisioner, AWS S3, ...).

Instead, this commit introduces a mean to template an entire folder of
files (recursively), that can then be treated as a whole by any provider
or provisioner that support directory inputs (such as the
file provisioner, the archive provider, ...).

This does not intend to make TerraForm a full-fledged templating system
as the templating grammar and capabilities are left unchanged. This only
aims at improving the user-experience of the existing templating
provider by significantly reducing the overhead when several files are
to be generated - without forcing the users to rely on external tools
when these templates stay simple and that their generation in TerraForm
is justified.
2017-04-25 10:48:26 -07:00
Bernerd Schaefer
de54855f63 Website 2017-04-24 17:42:54 -07:00
Paul Stack
358e1c2890 provider/oneandone: Adding the documentation to the sidebar (#13853)
Also renaming the files and adding the hcl syntax highlighting
2017-04-21 19:37:10 +03:00
Gauthier Wallet
80d940d154 provider/aws: Added Cognito Identity Pool (#13783) 2017-04-21 12:53:48 +03:00
Chris Marchesi
fa5cc7eb34 website: Fix mobile link to correct project (#13819)
Was pointing to Consul before :)
2017-04-20 15:16:36 -05:00
Chris Broglie
3f0934bd4e provider/aws: Add aws_kinesis_stream data source (#13562)
This fixes #13521
2017-04-20 22:13:39 +03:00
Jake Champlin
35388cbc31 Merge pull request #13468 from hashicorp/f-oracle-compute
provider/opc: Add Oracle Compute Provider
2017-04-20 14:52:39 -04:00
Andy Lindeman
28d71e6624 provider/github: Implements github_branch_protection (#10476) 2017-04-20 21:11:49 +03:00
Alexander
9bd50a1219 provider/google: BigQuery Dataset (#13436)
* Vendor BigQuery

* Add resource

* Add tests

* Add documentation

* Remove named import

* Remove `retain_on_delete`

* Fix formatting
2017-04-20 09:47:38 -07:00
Martin Atkins
d157eea2e3 website: Correct capitalization of "Bitbucket"
Previously we fixed this specifically for the Enterprise VCS integration,
but we also had some long-running errors of this sort in the docs for
how to specify module sources on Bitbucket.
2017-04-19 14:56:11 -07:00
Seth Vargo
bcacf3a036 Update ldlogo 2017-04-18 14:10:27 -04:00
demonwy
69ec7e12ac provider/alicloud: Add new resource ESS, including scalinggroup scalingconfiguration scalingrule and schedule (#13731)
* add docs

* add new resource ess

* add examples

* update aliyun go

* merge master

* fix ci
2017-04-18 15:18:57 +03:00
Martin Atkins
d515c2efc4 Merge #12757: local_file resource 2017-04-17 10:48:15 -07:00
Jonathan Thomas
4d359b318a website: add enterprise link in header and mobile sidebar. (#13653) 2017-04-14 11:52:14 +03:00
Quentin Machu
bf8d932d23 provider/local: Implement a new local_file resource
This commit adds the ability to provision files locally.
This is useful for cases where TerraForm generates assets
such as TLS certificates or templated documents that need
to be saved locally.

- While output variables can be used to return values to
the user, it is not extremly suitable for large content or
when many of these are generated, nor is it practical for
operators to manually save them on disk.
- While `local-exec` could be used with an `echo`, this
provider works across platforms and do not require any
convoluted escaping.
2017-04-13 14:57:29 -07:00
Mathieu Herbert
25cbbdea8a provider/google: datasource subnetwork and network (#12442)
* first version of this datasource

* add network and subnetwork datasource and documentation

* modify sidebar reference in documentation

* fix elements after review on network and subnetwork datasources

* fix fmt on Google provider.go

* modify code with the review

* modify documentation layout order

* fix alphabetic order in provider.go

* fix rebase issue and documentation datasource => data
2017-04-13 13:25:29 -07:00
Mary Elizabeth Cutrali
e80a960dc5 add bitbucket & gitlab to docs sidebar 2017-04-12 16:39:22 -05:00
Jenny Duckett
e57790e636 website: Add sidebar links to GitHub webhook resource pages
These resources and their documentation were added in
https://github.com/hashicorp/terraform/pull/12924. Add sidebar links to the
docs pages to make them easier to find.
2017-04-12 10:43:07 -07:00
Radek Simko
4606090c32 provider/aws: Add support for api_gateway_method_settings (#13542) 2017-04-12 16:13:33 +01:00
Radek Simko
5f02c0b61a provider/aws: Add support for api_gateway_stage (#13540) 2017-04-12 08:35:00 +01:00
Radek Simko
1cf0cd87cb provider/kubernetes: Add support for persistent_volume_claim (#13527) 2017-04-12 08:33:26 +01:00
Radek Simko
71a05e6f67 provider/kubernetes: Add support for persistent_volume 2017-04-11 07:04:57 +01:00
Seth Vargo
a959a04d2f Fix tracking 2017-04-10 11:31:35 -04:00
Jake Champlin
dec1cc28f0 Merge remote-tracking branch 'origin/master' into f-oracle-compute 2017-04-09 21:58:01 -04:00
Radek Simko
affdc76d4c aws: Allow import of OID connect provider + allow disappearance 2017-04-07 22:15:37 +01:00
Jake Champlin
4db7d69a48 Merge remote-tracking branch 'origin/master' into f-oracle-compute 2017-04-07 15:21:39 -04:00
Seth Vargo
b6b2d2d505 Remove more references to Atlas 2017-04-07 11:56:19 -04:00
Seth Vargo
966e3bc894 Remove atlas reference 2017-04-07 11:56:19 -04:00
Seth Vargo
4be8a790df Remove unused layout 2017-04-07 11:56:18 -04:00
Seth Vargo
426065a8f2 Fix broken links 2017-04-07 11:56:17 -04:00
Seth Vargo
0a595cb1e9 Cleanup layouts 2017-04-07 11:56:10 -04:00
Chris Riley
28106b8f08 Expanded all sub-menus in "FTE" 2017-04-07 11:56:10 -04:00
Chris Riley
a71c5ebfee Removed FTE "billing" doc and added FTE level of hierarchy 2017-04-07 11:56:09 -04:00
Chris Riley
dd76ccb579 removed Atlas from TF OSS Docs 2017-04-07 11:56:09 -04:00
Chris Riley
04aa0d8ff8 Fixed typos and broken links in TFE docs 2017-04-07 11:56:08 -04:00
Chris Riley
7571ca6c6f TFE Docs text edits, added support, docs css for tables 2017-04-07 11:56:08 -04:00
Chris Riley
41619e0a57 Added Packer docs to TFE 2017-04-07 11:56:07 -04:00
Chris Riley
ced173d248 Added API docs to FTE 2017-04-07 11:56:06 -04:00
Chris Riley
c7f8db3dba added TFE faq, billing, api, organizations 2017-04-07 11:56:06 -04:00