Skip to content

Commit def99fa

Browse files
committed
release new docs
1 parent db3af7f commit def99fa

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ terraform {
4040
required_providers {
4141
bitwarden = {
4242
source = "maxlaverse/bitwarden"
43-
version = ">= 0.12.0"
43+
version = ">= 0.12.1"
4444
}
4545
}
4646
}
@@ -49,6 +49,11 @@ terraform {
4949
provider "bitwarden" {
5050
email = "terraform@example.com"
5151
52+
# Specify a server url when using a self-hosted version of Bitwarden
53+
# or similar (e.g. Vaultwarden).
54+
#
55+
# server = "https://vault.myserver.org"
56+
5257
# If you have the opportunity, you can try out the embedded client which
5358
# removes the need for a locally installed Bitwarden CLI. Please note that
5459
# this feature is still considered experimental and not recommended for

docs/index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ terraform {
1818
required_providers {
1919
bitwarden = {
2020
source = "maxlaverse/bitwarden"
21-
version = ">= 0.12.0"
21+
version = ">= 0.12.1"
2222
}
2323
}
2424
}
@@ -116,10 +116,14 @@ provider "bitwarden" {
116116
client_id = "my-client-id"
117117
client_secret = "my-client-secret"
118118
119+
# Specify a server url when using a self-hosted version of Bitwarden
120+
# or similar (e.g. Vaultwarden).
121+
# server = "https://vault.myserver.org"
122+
119123
# If you have the opportunity, you can try out the embedded client which
120124
# removes the need for a locally installed Bitwarden CLI. Please note that
121125
# this feature is still considered experimental and not recommended for
122-
# production use.
126+
# production use yet.
123127
#
124128
# experimental {
125129
# embedded_client = true

examples/quick/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
bitwarden = {
44
source = "maxlaverse/bitwarden"
5-
version = ">= 0.12.0"
5+
version = ">= 0.12.1"
66
}
77
}
88
}

templates/index.md.tmpl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,14 @@ provider "bitwarden" {
8181
client_id = "my-client-id"
8282
client_secret = "my-client-secret"
8383

84+
# Specify a server url when using a self-hosted version of Bitwarden
85+
# or similar (e.g. Vaultwarden).
86+
# server = "https://vault.myserver.org"
87+
8488
# If you have the opportunity, you can try out the embedded client which
8589
# removes the need for a locally installed Bitwarden CLI. Please note that
8690
# this feature is still considered experimental and not recommended for
87-
# production use.
91+
# production use yet.
8892
#
8993
# experimental {
9094
# embedded_client = true

0 commit comments

Comments
 (0)