Daniel Schierbeck
e252640a94
Add a `url` attribute to `google_storage_bucket` ( #14393 )
...
* Add a `url` attribute to `google_storage_bucket`
* Document the `url` attribute
2017-05-11 15:30:06 +03:00
stack72
6063898e06
Merge branch 'master' of github.com:hashicorp/terraform
2017-05-11 14:56:01 +03:00
stack72
dc00c6bc09
provider/aws: Add AWS devicefarm docs to AWS navbar
2017-05-11 14:53:49 +03:00
stack72
4942c4d44d
Merge branch 'feat/device-farm-integration' of https://github.com/DanielMSchmidt/terraform into DanielMSchmidt-feat/device-farm-integration
2017-05-11 14:39:30 +03:00
Gerben Jacobs
2178981b44
update docs for `rundeck_job` resource
...
Change-Id: Id40ae356eaaedf9656b7e38d96d8eb292c9d2cea
2017-05-11 14:30:21 +03:00
tombuildsstuff
21af9995e9
Fixing some broken links
2017-05-11 13:55:29 +03:00
vrenjith
c3db6d02d7
Update for storage_os_disk description ( #14376 )
...
Changed data to os in the storage_os_disk description
2017-05-11 11:10:09 +01:00
Paddy
25ed7cc6c0
Merge pull request #14280 from hashicorp/paddy_container_versions
...
providers/google: add google_container_versions data source.
2017-05-10 15:50:16 -07:00
Paddy
de93082375
More doc updates container => container engine.
2017-05-10 15:41:02 -07:00
Paddy
1709ea4414
google_container_versions => google_container_engine_versions
...
As per feedback from @danawillow and @radeksimko.
2017-05-10 15:01:15 -07:00
Clint
24e00af217
provider/aws: Force lowercasing for DB Option group name or name_prefix ( #14366 )
2017-05-10 15:42:10 -05:00
Alexander
9517d80a35
provider/google: BigQuery Table ( #13743 )
...
* Add resource
* Add tests
* Add documentation
* Fix invalid comment
* Remove MinItems
* Add newline
* Store expected ID and format
* Add import note
* expiration_time can be computed if dataset has an expiration_time set
* Handle 404 using new check function
2017-05-10 10:20:39 -07:00
clint shryock
3063fa9947
provider/aws: Update documentation example to meet validation
2017-05-10 09:00:14 -05:00
Stephen Coe
c83ee17590
correction for capability values ( #14349 )
2017-05-10 14:44:13 +02:00
liz abinante!
35fc047b69
Merge pull request #14228 from hashicorp/liz/vagrant-cloud-migration-docs
...
website: copy vagrant cloud docs
2017-05-09 11:34:24 -07:00
Paul Stack
c4aaddde1a
provider/aws: Update aws_elasticache_replication_group documentation
2017-05-09 20:37:28 +03:00
Derrick Petzold
55a4ce2838
Feature request: Support for ElastiCache Redis cluster mode #9419
...
Added support for provisioning a native redis cluster elasticache replication group.
A new TypeSet attribute `cluster_mode` has been added. It requires the following
fields:
- `replicas_per_node_group` - The number of replica nodes in each node group
- `num_node_groups` - The number of node groups for this Redis replication group
Notes:
- `automatic_failover_enabled` must be set to true.
- `number_cache_clusters` is now a optional and computed field. If `cluster_mode` is set
its value will be computed as:
```num_node_groups + num_node_groups * replicas_per_node_group```
Below is a sample config:
resource "aws_elasticache_replication_group" "bar" {
replication_group_id = "tf-redis-cluser"
replication_group_description = "test description"
node_type = "cache.t2.micro"
port = 6379
parameter_group_name = "default.redis3.2.cluster.on"
automatic_failover_enabled = true
cluster_mode {
replicas_per_node_group = 1
num_node_groups = 2
}
}
2017-05-09 20:37:28 +03:00
liz abinante
de3e6ad416
⚡ website: copy vagrant cloud docs
2017-05-09 10:24:56 -07:00
Paul Stack
9dd4e5bcb0
provider/aws: Add support for targets to aws_ssm_association ( #14246 )
...
* provider/aws: Add support for targets to aws_ssm_association
Fixes : #13975
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSSSMAssociation_'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/05/05 20:32:43 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSSSMAssociation_ -timeout 120m
=== RUN TestAccAWSSSMAssociation_basic
--- PASS: TestAccAWSSSMAssociation_basic (139.13s)
=== RUN TestAccAWSSSMAssociation_withTargets
--- PASS: TestAccAWSSSMAssociation_withTargets (33.19s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 172.343s
```
* Update ssm_association.html.markdown
2017-05-09 17:48:57 +03:00
Dana Hoffman
1438eacdad
provider/google: better visibility for compute_region_backend_service ( #14301 )
2017-05-09 13:10:14 +03:00
stack72
880071ded5
Merge branch 'ses-arn' of https://github.com/joshuaspence/terraform into joshuaspence-ses-arn
2017-05-09 13:04:27 +03:00
Daniel Schmidt
6a7e81d8ae
provider/aws: add devicefarm project resource
2017-05-09 09:48:44 +02:00
Joshua Spence
f488e385f2
Add `arn` attribute to `aws_ses_domain_identity` resource
2017-05-09 17:14:51 +10:00
Radek Simko
178488f4bd
provider/kubernetes: Add support for limit_range ( #14285 )
2017-05-09 05:07:17 +02:00
Dmitrii Korotovskii
ace0456d58
http provider and http request data source
2017-05-08 17:37:48 -07:00
emily
64c2e68de9
Add additional properties for google resource storage bucket object. ( #14259 )
2017-05-08 16:35:47 -07:00
Radek Simko
296a3b2381
provider/kubernetes: Add support for resource_quota ( #13914 )
2017-05-08 13:43:24 +02:00
Paul Stack
221a88610b
provider/aws: Add support for importing Kinesis Streams ( #14278 )
...
Fixes : #14260
```
% make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSKinesisStream_import'
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/05/08 10:32:47 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSKinesisStream_import -timeout 120m
=== RUN TestAccAWSKinesisStream_importBasic
--- PASS: TestAccAWSKinesisStream_importBasic (101.93s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/aws 101.978s
```
2017-05-08 14:11:23 +03:00
Paddy
8b78d5b233
providers/google: add google_container_versions data source.
...
Add a data source for listing available versions for Container Engine
clusters or retrieving the latest available version.
This is mostly to support our tests for specifying a version for cluster
creation; the withVersion test has been updated to use the data source,
meaning it will stop failing on us as new versions get released.
2017-05-08 00:38:11 -07:00
Russ Van Bert
e88ca0b744
Grammar correction in alarm description ( #14276 )
2017-05-08 09:35:59 +03:00
Seth Vargo
83f29a3456
Add more complete Read example
2017-05-05 17:36:30 -04:00
Seth Vargo
1cffbbb323
Update feedback
2017-05-05 17:13:32 -04:00
Seth Vargo
0acb57f464
Add guide for Terraform providers
2017-05-05 17:13:31 -04:00
Seth Vargo
c70cc706ee
Add scaffolding for guides
2017-05-05 17:13:31 -04:00
trotttrotttrott
4170fe9e33
Replace "All Providers" link text w/ "All Commands"
...
This was probably a c/p mistake when this page was first created. The
src is rightly pointed back to the commands index, not resources.
2017-05-05 13:51:15 -07:00
Jake Champlin
88c6e95e4f
Merge pull request #14245 from hashicorp/f-add-arn-security-group-data-source
...
provider/aws: Add ARN to security group data source
2017-05-05 15:12:34 -04:00
Jake Champlin
06b5fbf9ef
add docs
2017-05-05 13:58:15 -04:00
liz abinante!
081e72f9f8
Merge pull request #14185 from hashicorp/liz/tfe-variables
...
[website] docs for TFE personal env + org variables
2017-05-05 10:38:00 -07:00
Glen Mailer
4ac56338de
Improve tests and documentation for azurerm_template_deployment outputs ( #13567 )
...
* Improve tests and documentation for azurerm_template_deployment outputs
* Updating to match the latest changes in master
2017-05-05 17:51:59 +01:00
Eugene Bekker
7c6d1956b0
website: too many '$' after first round of interpolation for template_file
2017-05-05 09:42:40 -07:00
Dennis Webb
e27e0862f3
Fixes order of interpolation functions in docs ( #14241 )
2017-05-05 17:24:03 +03:00
stack72
827a541b08
Removing contributor comment from CHANGELOG as it was in the wrong section
2017-05-05 17:14:53 +03:00
stack72
2b606101e7
Merge branch 'dasch-dasch/google-pubsub-subscription-path'
2017-05-05 16:58:50 +03:00
stack72
8d00895d96
proovider/google: Adding test for google_pubsub_subscription path
2017-05-05 16:57:24 +03:00
Jake Champlin
9e221f3811
Merge pull request #12872 from joshuaspence/log
...
Add a logarithm function
2017-05-05 09:56:33 -04:00
Thomas Poindessous
87055fa47a
Added missing datasources and resources in panel list ( #14235 )
...
Corrected some HTML errors
2017-05-05 15:40:53 +03:00
Thomas Poindessous
f1cd2e3954
Added a missing resource in panel ( #14236 )
2017-05-05 15:39:20 +03:00
Joshua Spence
38d4d2f9d4
Add a logarithm function
...
Fixes #9498 . Adds a `log` function for calculating logarithms.
2017-05-05 17:06:53 +10:00
Paul Thrasher
26a91abd0c
website: Add code coloring to aws_security_group doc
2017-05-04 17:07:57 -07:00
Paul Stack
3bb4c56165
provider/aws: Prevent Crash when importing aws_route53_record ( #14218 )
...
Fixes : #14217
We now check to make sure that we have the correct number of parts when
we have split the resource ID. It isn't an elegant fix but it works as
expected. Also added some more documentation about what is required to
actually construct the Id needed for import
2017-05-04 21:51:10 +03:00