Skip to content

Commit eaf55db

Browse files
committed
chore: update docs
1 parent 9a884c7 commit eaf55db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/resources/instance.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Required:
5151
Optional:
5252

5353
- `database` (String) The database for the instance, you can set this if the engine type is POSTGRES.
54-
- `external_secret` (Block List, Max: 1) The external secret to get the database password. (see [below for nested schema](#nestedblock--data_sources--external_secret))
54+
- `external_secret` (Block List, Max: 1) The external secret to get the database password. Learn more: https://www.bytebase.com/docs/get-started/instance/#use-external-secret-manager (see [below for nested schema](#nestedblock--data_sources--external_secret))
5555
- `password` (String, Sensitive) The connection user password used by Bytebase to perform DDL and DML operations.
5656
- `ssl_ca` (String, Sensitive) The CA certificate. Optional, you can set this if the engine type is MYSQL, POSTGRES, TIDB or CLICKHOUSE.
5757
- `ssl_cert` (String, Sensitive) The client certificate. Optional, you can set this if the engine type is MYSQL, POSTGRES, TIDB or CLICKHOUSE.

provider/data_source_instance.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func getExternalSecretSchema() *schema.Schema {
146146
return &schema.Schema{
147147
Type: schema.TypeList,
148148
Computed: true,
149-
Description: "The external secret to get the database password.",
149+
Description: "The external secret to get the database password. Learn more: https://www.bytebase.com/docs/get-started/instance/#use-external-secret-manager",
150150
Elem: &schema.Resource{
151151
Schema: map[string]*schema.Schema{
152152
"vault": {

provider/resource_instance.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func resourceInstance() *schema.Resource {
148148
Type: schema.TypeList,
149149
Optional: true,
150150
MaxItems: 1,
151-
Description: "The external secret to get the database password.",
151+
Description: "The external secret to get the database password. Learn more: https://www.bytebase.com/docs/get-started/instance/#use-external-secret-manager",
152152
Elem: &schema.Resource{
153153
Schema: map[string]*schema.Schema{
154154
"vault": {

0 commit comments

Comments
 (0)