Skip to content

Commit dd19df5

Browse files
committed
#patch: fix docs
1 parent 6594dc7 commit dd19df5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Standing on the shoulders of giants enables us to yeet mail further.
1313
1414
## Usage
1515

16-
The provide with use the environment variable `MAILFORM_API_TOKEN` by default unless specified in the provider configuration.
16+
The provider with use the environment variable `MAILFORM_API_TOKEN` by default unless specified in the provider configuration.
1717

1818
```hcl
1919
terraform {
@@ -25,7 +25,7 @@ terraform {
2525
}
2626
2727
provider "mailform" {
28-
api_token = "XXX" // If not specified, will read MAILFORM_API_TOKEN env var
28+
api_token = "XXX" // If not specified, will read MAILFORM_API_TOKEN environment variable
2929
}
3030
3131
// Create PDF
@@ -65,7 +65,7 @@ output "order_info" {
6565

6666
## Requirements
6767

68-
- [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x
68+
- [Terraform](https://www.terraform.io/downloads.html) >= 0.12.x
6969
- [Go](https://golang.org/doc/install) >= 1.18
7070

7171
## Building The Provider
@@ -85,7 +85,7 @@ Please see the Go documentation for the most up to date information about using
8585

8686
To add a new dependency `github.com/author/dependency` to your Terraform provider:
8787

88-
```
88+
```sh
8989
go get github.com/author/dependency
9090
go mod tidy
9191
```
@@ -109,5 +109,5 @@ In order to run the full suite of Acceptance tests, run `make testacc`.
109109
*Note:* Acceptance tests create real resources, and often cost money to run.
110110

111111
```sh
112-
$ make testacc
112+
make testacc
113113
```

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/circa10a/terraform-provider-mailform
33
go 1.18
44

55
require (
6-
github.com/circa10a/go-mailform v0.5.0
6+
github.com/circa10a/go-mailform v0.6.0
77
github.com/hashicorp/terraform-plugin-docs v0.13.0
88
github.com/hashicorp/terraform-plugin-log v0.7.0
99
github.com/hashicorp/terraform-plugin-sdk/v2 v2.24.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkY
2929
github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=
3030
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
3131
github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8=
32-
github.com/circa10a/go-mailform v0.5.0 h1:omK1d+/24xhb05qQ3c6ReU9lUeDrKk4WiMwSgivNKFc=
33-
github.com/circa10a/go-mailform v0.5.0/go.mod h1:oCX+R+o4jbjRyFYlcfnDzjt+zALo1w7Gt1DG9Tz1qGg=
32+
github.com/circa10a/go-mailform v0.6.0 h1:chAhILHtID+fdeOEfBRWJrVYwaSnVR+raocXumtMc0o=
33+
github.com/circa10a/go-mailform v0.6.0/go.mod h1:oCX+R+o4jbjRyFYlcfnDzjt+zALo1w7Gt1DG9Tz1qGg=
3434
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
3535
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3636
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

0 commit comments

Comments
 (0)