Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lscheidler committed May 10, 2019
2 parents 36b75a8 + 28b2383 commit d946f7e
Show file tree
Hide file tree
Showing 6 changed files with 243 additions and 100 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,8 @@ In addition to the high-level known issues above, please refer also to [the GitH

## 0.11.11 (December 14, 2018)

**NOTE:** Subsequent releases in the v0.11.x line occurred after this branch pivoted to v0.12.0 development. For more information on these, see [the v0.11 maintenance changelog](https://github.com/hashicorp/terraform/blob/v0.11/CHANGELOG.md).

IMPROVEMENTS:

* backend/remote: Return detailed version (in)compatibility information ([#19660](https://github.com/hashicorp/terraform/issues/19660))
Expand Down
2 changes: 1 addition & 1 deletion terraform/eval_diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ func (n *EvalDiff) Eval(ctx EvalContext) (interface{}, error) {
}
plannedNewVal = resp.PlannedState
plannedPrivate = resp.PlannedPrivate
for _, err := range schema.ImpliedType().TestConformance(plannedNewVal.Type()) {
for _, err := range plannedNewVal.Type().TestConformance(schema.ImpliedType()) {
diags = diags.Append(tfdiags.Sourceless(
tfdiags.Error,
"Provider produced invalid plan",
Expand Down
2 changes: 1 addition & 1 deletion website/docs/configuration/expressions.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ sequence, with the following characters selecting the escape behavior:
| `\"` | Literal quote (without terminating the string) |
| `\\` | Literal backslash |
| `\uNNNN` | Unicode character from the basic multilingual plane (NNNN is four hex digits) |
| `\UNNNNNNNN` | Unicode character from supplimentary planes (NNNNNNNN is eight hex digits) |
| `\UNNNNNNNN` | Unicode character from supplementary planes (NNNNNNNN is eight hex digits) |

The alternative syntax for string literals is the so-called "heredoc" style,
inspired by Unix shell languages. This style allows multi-line strings to
Expand Down
2 changes: 1 addition & 1 deletion website/docs/configuration/index.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ resources into source files in whatever way makes sense for your infrastructure.
## Terraform CLI vs. Providers

The Terraform command line interface (CLI) is a general engine for evaluating
and applying Terraform configuations. It defines the Terraform language syntax
and applying Terraform configurations. It defines the Terraform language syntax
and overall structure, and coordinates sequences of changes that must be made to
make remote infrastructure match the given configuration.

Expand Down
2 changes: 2 additions & 0 deletions website/docs/providers/type/community-index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ please fill out this [community providers form](https://docs.google.com/forms/d/
- [Rollbar](https://github.com/babbel/terraform-provider-rollbar)
- [SakuraCloud](https://github.com/sacloud/terraform-provider-sakuracloud)
- [SCVMM](https://github.com/GSLabDev/terraform-provider-scvmm)
- [Sendgrid](https://github.com/opteemister/terraform-provider-sendgrid)
- [Sensu](https://github.com/jtopjian/terraform-provider-sensu)
- [Sentry](https://github.com/jianyuan/terraform-provider-sentry)
- [Sewan](https://github.com/SewanDevs/terraform-provider-sewan)
Expand All @@ -119,6 +120,7 @@ please fill out this [community providers form](https://docs.google.com/forms/d/
- [Transloadit](https://github.com/bocodigitalmedia/terraform-provider-transloadit)
- [Updown.io](https://github.com/mvisonneau/terraform-provider-updown)
- [Uptimerobot](https://github.com/SpamapS/terraform-provider-uptimerobot)
- [Vaulted](https://github.com/sumup-oss/terraform-provider-vaulted)
- [Venafi](https://github.com/Venafi/terraform-provider-venafi)
- [vRealize Automation](https://github.com/GSLabDev/terraform-provider-vra)
- [Vultr](https://github.com/squat/terraform-provider-vultr)
Expand Down
Loading

0 comments on commit d946f7e

Please sign in to comment.