Sertaç Özercan
e0cd380814
[MS] provider/azurerm: Virtual Machine Scale Sets with managed disk support ( #13717 )
...
* added vmss with managed disk support
* Update vmss docs
* update vmss test
* added vmss managed disk import test
* update vmss tests
* remove unused test resources
* reverting breaking changes on storage_os_disk and storage_image_reference
* updated vmss tests and documentation
* updated vmss flatten osdisk
* updated vmss resource and import test
* update name in vmss osdisk
* update vmss test to include a blank name
* update vmss test to include a blank name
2017-05-12 15:58:00 +03:00
Joe Topjian
a27e142625
provider/openstack: Add documentation about user_data ( #14411 )
2017-05-12 13:36:01 +03:00
Seth Vargo
5c39f5b2d2
Embed webinar video ( #14419 )
2017-05-12 13:32:43 +03:00
PaulAtkins
deda15ace0
Correct argument description for targets ( #14428 )
...
Correct `targets` argument description to show the allowed keys are `InstanceIds` or `WindowTargetIds`
2017-05-12 13:32:11 +03:00
Andy Chan
5449e7731f
Adding the missed Timeout related documentation ( #14410 )
2017-05-11 22:37:54 +03:00
Seth Vargo
510733ffd3
Merge pull request #14292 from duplich/patch-1
...
Update _global.scss
2017-05-11 14:49:37 -04:00
Seth Vargo
5f35f0d19f
Restrict to just pre-breakpoint
2017-05-11 14:43:58 -04:00
Radek Simko
68aebee1e5
provider/aws: Fix Content-Encoding for S3 object acc test ( #14400 )
2017-05-11 18:35:50 +02:00
vrenjith
fae2bf98e6
Spaces are not allowed in name
...
Spaces are not allowed in name for `azurerm_lb_probe`
2017-05-11 20:48:11 +05:30
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
stack72
a59ee0b30e
v0.9.5
2017-05-11 09:22:11 +00: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
Jasmin Causevic
09cdd7abff
Update _global.scss
...
Fixing broken layout aka responsive layout for startpage
2017-05-08 19:53:49 +02: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