Matthew Frahry
bcf1514422
Merge pull request #14090 from hashicorp/p-aws-config-config-source-detail
...
provider/aws Added default to event source
2017-05-03 18:36:02 -06:00
Paul Thrasher
9ad1425cf8
Merge pull request #14192 from hashicorp/thrashr888/aws_db_option_group-name-lowercase
...
provider/aws: aws_db_option_group normalizes name to lowercase
2017-05-03 17:00:16 -07:00
Paul Thrasher
ccae9372e5
provider/aws: aws_db_option_group normalizes name to lowercase
...
This is a fix for PR #11040 . The code here lowercases the name and/or prefix before sending it to the AWS API and the terraform state. This means the state will match the actual resource name and be able to converge the diff.
2017-05-03 16:50:40 -07:00
Paddy
7a73c21c11
Merge pull request #13824 from JDiPierro/import_google_dns_managed_zone
...
Importability for Google DNS Managed Zone
2017-05-03 15:54:43 -07:00
Paddy
dc63d8c42b
Merge pull request #12482 from tpoindessous/gcp_compute_disk_snapshot
...
provider/google : add a new resource : google_compute_snapshot
2017-05-03 15:47:07 -07:00
Dana Hoffman
39e25ca925
provider/google: fix compute instance panic with bad disk config ( #14169 )
2017-05-03 14:30:36 -07:00
Dana Hoffman
1aba71b556
update list of services in ignoreUnenablableServices test ( #14168 )
2017-05-03 14:29:48 -07:00
Jake Champlin
5152311338
Merge pull request #14189 from hashicorp/f-update-nomad-provider-tests
...
provider/nomad: Update acceptance tests to correctly reflect nomad API
2017-05-03 17:02:58 -04:00
Paddy
c043f1185c
Merge pull request #14163 from hashicorp/paddy_14152_sfr_tenancy
...
provider/aws: support tenancy for spot fleets
2017-05-03 13:53:45 -07:00
Jake Champlin
5370a0dc30
provider/nomad: Update acceptance tests to correctly reflect nomad API
...
Previously Nomad acceptance tests would look for a `404` response from the Nomad API when querying a nomad job after it had been stopped. Nomad has, for a while now, cached jobs such that they are still returnable from the API but have `"dead"` as their status.
```
$ make testacc TEST=./builtin/providers/nomad
==> Checking that code complies with gofmt requirements...
go generate $(go list ./... | grep -v /terraform/vendor/)
2017/05/03 16:27:31 Generated command/internal_plugin_list.go
TF_ACC=1 go test ./builtin/providers/nomad -v -timeout 120m
=== RUN TestProvider
--- PASS: TestProvider (0.00s)
=== RUN TestResourceJob_basic
--- PASS: TestResourceJob_basic (0.03s)
=== RUN TestResourceJob_refresh
--- PASS: TestResourceJob_refresh (0.04s)
=== RUN TestResourceJob_disableDestroyDeregister
--- PASS: TestResourceJob_disableDestroyDeregister (0.05s)
=== RUN TestResourceJob_idChange
--- PASS: TestResourceJob_idChange (0.06s)
=== RUN TestResourceJob_parameterizedJob
--- PASS: TestResourceJob_parameterizedJob (0.02s)
PASS
ok github.com/hashicorp/terraform/builtin/providers/nomad 0.222s
```
2017-05-03 16:33:42 -04:00
Paddy
76795dc2fc
Fix whitespace.
2017-05-03 13:28:37 -07:00
Conor Mongey
eb4aa9ea63
provider/vault: vault_auth_backend resource ( #10988 )
2017-05-03 22:43:10 +03:00
Jasmin Gacic
9b8bee8edd
Private images Fix ( #14173 )
...
* Allowing for volumes to be created with private ProfitBricks images without image password or ssh keys
* Acceptance test fix
* Errorf formatting fix
* Dependencies update
2017-05-03 22:29:03 +03:00
Tom Harvey
3383222667
Merge pull request #13670 from StephenWeatherford/dev/stephweatherford/9694
...
[MS] Fix crash #7353 , and support bool and int outputs
2017-05-03 08:06:31 +01:00
Tom Harvey
5a2aecd1e1
Merge pull request #14099 from dominik-lekse/public-feature/azurerm-sql-elasticpool
...
provider/azurerm: Add resource azurerm_sql_elasticpool
2017-05-03 06:29:24 +01:00
Paddy
a345cc45d7
provider/aws: support tenancy for spot fleets
...
Add the `placement_tenancy` attribute to the `aws_spot_fleet_request`
resource so users can request instances use dedicated hardware.
Fixes #14152 .
2017-05-02 15:52:54 -07:00
Christoph Tavan
69681b0a86
provider/google: Improve error messages in backend_service test
2017-05-02 23:18:41 +02:00
Christoph Tavan
08b9a11b42
provider/google: Improve backend service error handling
...
Unset id in case the backend service cannot be created. This basically
updates these lines of code to match the more modern style which is
being used e.g. for the google_compute_instance resource.
2017-05-02 23:18:41 +02:00
Christoph Tavan
9b9144ba95
provider/google: Add support for backend buckets
...
Adds a new resource google_compute_backend_bucket according to
https://cloud.google.com/compute/docs/reference/latest/backendBuckets
Fixes hashicorp/terraform#12505
2017-05-02 23:18:40 +02:00
Christoph Tavan
c9640e40df
provider/google: Update Google Compute godep
2017-05-02 23:08:23 +02:00
Stephen Weatherford
202ed9c680
Use false/true instead of 0/1 for bool
2017-05-02 19:13:25 +00:00
Jake Champlin
78955efdd7
Merge pull request #11452 from pbthorste/master
...
provider/postgres grant role when creating database
2017-05-02 11:41:26 -04:00
Jake Champlin
43a2220808
Merge pull request #14064 from dgolja/bugfix/sns_delivery_policy
...
provider/aws: Fixes the bug where SNS delivery policy get always recreated
2017-05-02 10:33:42 -04:00
Dejan Golja
1df7e3afad
acceptance test for SNS delivery policy
2017-05-03 00:11:58 +10:00
Jake Champlin
b75d315690
Merge pull request #14134 from hashicorp/b-fix-panic-remote-exec
...
provisioner/remote-exec: Fix panic from remote_exec provisioner
2017-05-02 09:56:53 -04:00
Dominik Lekse
bd51a4db22
provider/azurerm: Pull request #14099 Removed unused Azure Go SDK clients; Safe guard ElasticPoolProperties in resourceArmSqlElasticPoolRead
2017-05-02 14:55:41 +02:00
Dominik Lekse
8491fb9498
provider/azurerm Completed test TestAccAzureRMSqlDatabase_elasticPool to verify creating a SQL database in an SQL elastic pool
2017-05-02 14:50:32 +02:00
Dominik Lekse
f41594952e
Merge commit 'a5908cd288d5ab3754d47376ce162369e569bba2' into public-feature/azurerm-sql-elasticpool
2017-05-02 14:27:28 +02:00
Kannan Goundan
adb789f0f8
aws_route53_record: Only unquote the record types that we quote. ( #11257 )
...
Also clean up the code a little.
2017-05-02 10:31:51 +01:00
Radek Simko
b2ae6fe392
provider/dme: Save records in lowercase to avoid diffs ( #14130 )
2017-05-02 06:36:16 +01:00
Justin DiPierro
d80885f746
Importability for Google DNS Managed Zone
2017-05-01 20:28:28 -04:00
Dana Hoffman
cfbe11850d
provider/google: add support for networkIP in compute instance templates ( #13515 )
2017-05-01 17:16:05 -07:00
Dana Hoffman
8ae5ad46e0
provider/google: Add pagination for reading project services ( #13758 )
2017-05-01 16:33:51 -07:00
Clint
a8e4a9bf07
provider/aws: Update `aws_emr_cluster` to support Security Configuration ( #14133 )
...
* added emr security configurations
* gofmt after rebase
* provider/aws: Update EMR Cluster to support Security Configuration
* update test to create key
* update docs
2017-05-01 17:02:59 -05:00
Jake Champlin
7e5eeb2268
provisioner/remote-exec: Fix panic from remote_exec provisioner
...
Fixes panic on `nil` values of `inline` and `scripts` from improper interface casts.
Fixes : #13970
2017-05-01 16:48:42 -04:00
Jake Champlin
3a01d5f5e1
Merge pull request #14104 from rlweb/feature/aws_dynamodb_table-add-timetolive
...
provider/aws: aws_dynamodb_table Add support for TimeToLive
2017-05-01 15:37:34 -04:00
Rhys Laval
64b5ff54eb
Fix vet issue
2017-05-01 19:56:21 +01:00
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
Jake Champlin
4939e24ca0
Merge pull request #14103 from travertischio/fastly-optional-conditions
...
provider/fastly Changes setting conditionals to optional
2017-05-01 10:21:35 -04:00
Justin Campbell
61f45dd585
provider/heroku: scope valid stage names to func
2017-05-01 10:20:51 -04:00
Justin Campbell
02bb1e6907
provider/heroku: Output IDs on failure
2017-05-01 10:20:28 -04:00
Justin Campbell
3d4f1ba4f3
provider/heroku: Remove unused argument in test
2017-05-01 10:20:04 -04:00
Justin Campbell
3a87ca4a43
provider/heroku: Prefer struct for required attrs
2017-05-01 10:19:44 -04:00
Justin Campbell
e2b361f603
provider/heroku: Allow renaming a pipeline
2017-05-01 10:15:08 -04:00
Justin Campbell
dd48b5b7e7
provider/heroku: heroku_pipeline_coupling
...
Also adds validators for UUID and pipeline stage names
2017-05-01 10:15:08 -04:00
Justin Campbell
40805bb80c
provider/heroku: Add heroku_pipeline resource
2017-05-01 10:15:07 -04:00
Rhys Laval
8230a5ded8
provider/aws: aws_dynamodb_table Add support for TimeToLive. Fix errcheck
2017-04-30 23:34:19 +01:00
Rhys Laval
27d3d2a871
provider/aws: aws_dynamodb_table Add support for TimeToLive
2017-04-30 23:20:38 +01:00
travertischio
041d5a369e
Makes cache setting condition optional in fastly service
2017-04-30 17:16:06 -03:00
travertischio
3489795396
Makes request condition optional for fastly request settings
2017-04-30 17:15:51 -03:00