Skip to content

Commit 059c70d

Browse files
committed
update README
1 parent 70edc65 commit 059c70d

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
![Releases](https://img.shields.io/github/v/release/maxlaverse/terraform-provider-bitwarden?include_prereleases)
77
![Downloads](https://img.shields.io/badge/dynamic/json?color=7b42bc&label=Downloads&labelColor=black&logo=terraform&query=data.attributes.total&url=https%3A%2F%2Fregistry.terraform.io%2Fv2%2Fproviders%2F2657%2Fdownloads%2Fsummary&style=flat-square)
88

9-
The Terraform Bitwarden provider is a plugin for Terraform that allows to manage different kind of Bitwarden resources from their [Password Manager] and [Secrets Manager] products.
9+
The Terraform Bitwarden provider is a plugin for Terraform/OpenTofu that allows to manage different kind of Bitwarden resources from their [Password Manager] and [Secrets Manager] products.
1010
This project is not associated with the Bitwarden project nor 8bit Solutions LLC.
1111

1212
**[Explore the docs »][Terraform Registry docs]**
@@ -21,10 +21,10 @@ This project is not associated with the Bitwarden project nor 8bit Solutions LLC
2121

2222
## Supported Versions
2323
The plugin has been tested and built with the following components:
24-
- [Terraform] v1.6.1 / [OpenTofu] v1.8.0
25-
- [Bitwarden CLI] v2023.2.0 (if not using the experimental `embedded_client`)
24+
- [Terraform] v1.9.8 / [OpenTofu] v1.8.0
25+
- [Bitwarden CLI] v2023.2.0 (when not enabling the experimental `embedded_client` feature)
2626
- [Go] 1.23.1 (for development)
27-
- [Docker] 23.0.5 (for development)
27+
- [Docker] 24.0.6 (for development)
2828

2929
The provider likely works with older versions but those haven't been tested.
3030

@@ -37,7 +37,7 @@ terraform {
3737
required_providers {
3838
bitwarden = {
3939
source = "maxlaverse/bitwarden"
40-
version = ">= 0.10.0"
40+
version = ">= 0.11.1"
4141
}
4242
}
4343
}
@@ -46,9 +46,10 @@ terraform {
4646
provider "bitwarden" {
4747
email = "terraform@example.com"
4848
49-
# If you have the opportunity, you can try out the embedded client which removes the need
50-
# for a locally installed Bitwarden CLI. Please note that this feature is still considered
51-
# as experimental, might not work as expected, and is not recommended for production use.
49+
# If you have the opportunity, you can try out the embedded client which
50+
# removes the need for a locally installed Bitwarden CLI. Please note that
51+
# this feature is still considered experimental and not recommended for
52+
# production use.
5253
#
5354
# experimental {
5455
# embedded_client = true

docs/index.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ terraform {
2727
provider "bitwarden" {
2828
email = "terraform@example.com"
2929
30-
# If you have the opportunity, you can try out the embedded client which removes the need
31-
# for a locally installed Bitwarden CLI. Please note that this feature is still considered
32-
# as experimental, might not work as expected, and is not recommended for production use.
30+
# If you have the opportunity, you can try out the embedded client which
31+
# removes the need for a locally installed Bitwarden CLI. Please note that
32+
# this feature is still considered experimental and not recommended for
33+
# production use.
3334
#
3435
# experimental {
3536
# embedded_client = true
@@ -115,9 +116,10 @@ provider "bitwarden" {
115116
client_id = "my-client-id"
116117
client_secret = "my-client-secret"
117118
118-
# If you have the opportunity, you can try out the embedded client which removes the need
119-
# for a locally installed Bitwarden CLI. Please note that this feature is still considered
120-
# as experimental, might not work as expected, and is not recommended for production use.
119+
# If you have the opportunity, you can try out the embedded client which
120+
# removes the need for a locally installed Bitwarden CLI. Please note that
121+
# this feature is still considered experimental and not recommended for
122+
# production use.
121123
#
122124
# experimental {
123125
# embedded_client = true

examples/quick/provider.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ terraform {
1111
provider "bitwarden" {
1212
email = "terraform@example.com"
1313

14-
# If you have the opportunity, you can try out the embedded client which removes the need
15-
# for a locally installed Bitwarden CLI. Please note that this feature is still considered
16-
# as experimental, might not work as expected, and is not recommended for production use.
14+
# If you have the opportunity, you can try out the embedded client which
15+
# removes the need for a locally installed Bitwarden CLI. Please note that
16+
# this feature is still considered experimental and not recommended for
17+
# production use.
1718
#
1819
# experimental {
1920
# embedded_client = true

templates/index.md.tmpl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,10 @@ provider "bitwarden" {
8181
client_id = "my-client-id"
8282
client_secret = "my-client-secret"
8383

84-
# If you have the opportunity, you can try out the embedded client which removes the need
85-
# for a locally installed Bitwarden CLI. Please note that this feature is still considered
86-
# as experimental, might not work as expected, and is not recommended for production use.
84+
# If you have the opportunity, you can try out the embedded client which
85+
# removes the need for a locally installed Bitwarden CLI. Please note that
86+
# this feature is still considered experimental and not recommended for
87+
# production use.
8788
#
8889
# experimental {
8990
# embedded_client = true

0 commit comments

Comments
 (0)