Skip to content

Commit baeb022

Browse files
committed
Update docs
1 parent 1d21b5f commit baeb022

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Tested and used against https://github.com/hashicorp/vault official docker image
2222

2323
Check [magefile.go](./magefile.go) for up-to-date info what the test suite matrix uses.
2424

25-
Also shown at https://medium.com/@syndbg/provisioning-vault-encrypted-secrets-using-terraform-using-sumup-oss-vaulted-and-4aa9721d082c?source=friends_link&sk=9eabe1bbe6ba089fe176d94cf413862d
25+
Also shown at https://medium.com/@syndbg/provisioning-vault-encrypted-secrets-using-terraform-using-sumup-oss-vaulted-and-4aa9721d082c
2626

2727
## Typical Terraform workflow
2828

@@ -34,6 +34,12 @@ Also shown at https://medium.com/@syndbg/provisioning-vault-encrypted-secrets-us
3434

3535
## Installation
3636

37+
### 0.12 Terraform and newer
38+
39+
Use https://registry.terraform.io/providers/sumup-oss/vaulted/latest
40+
41+
### Pre-0.12 Terraform
42+
3743
1. Download latest GitHub release locally for your OS and architecture.
3844
2. Follow https://www.terraform.io/docs/configuration/providers.html#third-party-plugins
3945
3. Move downloaded release binary to local terraform plugin dir.

main.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ import (
2525
"github.com/sumup-oss/terraform-provider-vaulted/internal/provider"
2626
)
2727

28-
var version = "dev"
28+
// these will be set by the goreleaser configuration
29+
// to appropriate values for the compiled binary.
30+
var version = "dev" // goreleaser can also pass the specific commit if you want
31+
// commit string = ""
2932

3033
func main() {
3134
var debugMode bool

0 commit comments

Comments
 (0)