Skip to content

Commit 2d523f6

Browse files
authored
fix: update docs (#39)
1 parent 5e79195 commit 2d523f6

File tree

10 files changed

+9
-15
lines changed

10 files changed

+9
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Please follow [Manage Bytebase with Terraform](https://www.bytebase.com/docs/get
1818

1919
- [Go](https://golang.org/doc/install) (1.19 or later)
2020
- [Terraform](https://developer.hashicorp.com/terraform/downloads?product_intent=terraform) (1.3.5 or later)
21-
- [Bytebase](https://github.com/bytebase/bytebase)
21+
- [Bytebase](https://github.com/bytebase/bytebase) (1.11.0 or later)
2222

2323
### Prepare Bytebase OpenAPI server
2424

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.7-alpha.2
1+
0.0.7-alpha.3

docs/data-sources/instance_role.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ description: |-
88

99
# bytebase_instance_role (Data Source)
1010

11-
> Requires the Bytebase version > 1.9.1 or use the release-ci.
12-
1311
The instance role data source. You can get a single role in a specific instance through the `bytebase_instance_role` data source.
1412

1513
## Example Usage

docs/data-sources/instance_role_list.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ description: |-
88

99
# bytebase_instance_role_list (Data Source)
1010

11-
> Requires the Bytebase version > 1.9.1 or use the release-ci.
12-
1311
The instance role list data source. You can list roles in a specific instance through the `bytebase_instance_role_list` data source.
1412

1513
## Example Usage

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ terraform {
4747
required_providers {
4848
bytebase = {
4949
source = "bytebase/bytebase"
50-
version = "0.0.1"
50+
version = "<the provider version>"
5151
}
5252
}
5353
}
@@ -84,7 +84,7 @@ terraform apply
8484
terraform destory
8585
```
8686

87-
You can check [examples](https://github.com/bytebase/terraform-provider-bytebase/blob/main/examples/main.tf) for more usage examples.
87+
You can check [examples](https://github.com/bytebase/terraform-provider-bytebase/blob/main/examples) for more usage examples.
8888

8989
<!-- schema generated by tfplugindocs -->
9090

@@ -115,7 +115,7 @@ terraform {
115115
required_providers {
116116
bytebase = {
117117
source = "bytebase/bytebase"
118-
version = "0.0.3"
118+
version = "<the provider version>"
119119
}
120120
}
121121
}

docs/resources/instance_role.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ description: |-
88

99
# bytebase_instance_role (Resource)
1010

11-
> Requires the Bytebase version > 1.9.1 or use the release-ci.
12-
1311
Instance role resource. You can read, create, update or delete a single role in a specific instance through `bytebase_instance_role` resource.
1412

1513
## Example Usage

examples/environments/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
terraform {
33
required_providers {
44
bytebase = {
5-
version = "0.0.7-alpha.2"
5+
version = "0.0.7-alpha.3"
66
# For local development, please use "terraform.local/bytebase/bytebase" instead
77
source = "registry.terraform.io/bytebase/bytebase"
88
}

examples/instances/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
terraform {
33
required_providers {
44
bytebase = {
5-
version = "0.0.7-alpha.2"
5+
version = "0.0.7-alpha.3"
66
# For local development, please use "terraform.local/bytebase/bytebase" instead
77
source = "registry.terraform.io/bytebase/bytebase"
88
}

examples/roles/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
bytebase = {
4-
version = "0.0.7-alpha.2"
4+
version = "0.0.7-alpha.3"
55
# For local development, please use "terraform.local/bytebase/bytebase" instead
66
source = "registry.terraform.io/bytebase/bytebase"
77
}

examples/setup/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
bytebase = {
4-
version = "0.0.7-alpha.2"
4+
version = "0.0.7-alpha.3"
55
# For local development, please use "terraform.local/bytebase/bytebase" instead
66
source = "registry.terraform.io/bytebase/bytebase"
77
}

0 commit comments

Comments
 (0)