Skip to content

Commit

Permalink
Merge pull request #114 from 1Password/release/v1.3.1
Browse files Browse the repository at this point in the history
Prepare Release - v1.3.1
  • Loading branch information
volodymyrZotov committed Dec 1, 2023
2 parents 439dbd2 + 8acfc52 commit 1c9f8ce
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@

---

[//]: # (START/v1.3.1)
# v1.3.1

## Fixes
* Update documentation to mention that the provider supports Service Accounts. {#106}

---

[//]: # (START/v1.3.0)
# v1.3.0

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ terraform {
required_providers {
onepassword = {
source = "1Password/onepassword"
version = "~> 1.2.0"
version = "~> 1.3.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ terraform {
required_providers {
onepassword = {
source = "1Password/onepassword"
version = "~> 1.2.0"
version = "~> 1.3.0"
}
}
}
Expand Down
6 changes: 5 additions & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
This example demonstrates creating the currently supported types of 1Password Items (Logins, Passwords, and Databases).
## Prerequisites

To run this example you have to have setup a 1Password Connect API instance and issued a Token with access to a demo vault. You will need to export both the Connect API token and the UUID of your demo vault as environment variables.
To run this example you have to have either issue a 1Password service account token or setup a 1Password Connect API instance and issued a Connect Token with access to a demo vault. You will need to export both the Connect API token and the UUID of your demo vault as environment variables.

```sh
# to use service account, set
$ export OP_SERVICE_ACCOUNT_TOKEN="Put your 1Password service account token here"

# to use Connect, set
$ export OP_CONNECT_TOKEN="Put your 1Password Connect API token here"
$ export TF_VAR_demo_vault="Put a Vault UUID that has been added to your 1Password Connect API here"
```
Expand Down
2 changes: 1 addition & 1 deletion examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
onepassword = {
source = "1Password/onepassword"
version = "~> 1.2.0"
version = "~> 1.3.0"
}
}
}
Expand Down

0 comments on commit 1c9f8ce

Please sign in to comment.