Skip to content

Commit 404484c

Browse files
committed
chore: update
1 parent dee5b4b commit 404484c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/resources/project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Optional:
6969
Optional:
7070

7171
- `database` (String) The accessible database full name in instances/{instance resource id}/databases/{database name} format
72-
- `expire_timestamp` (String) The expiration timestamp in YYYY-MM-DDThh:mm:ss.000Z format
72+
- `expire_timestamp` (String) The expiration timestamp in YYYY-MM-DDThh:mm:ssZ format
7373
- `row_limit` (Number) The export row limit for exporter role
7474
- `schema` (String) The accessible schema in the database
7575
- `tables` (Set of String) The accessible table list

examples/setup/project.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "bytebase_project" "sample_project" {
2727
database = "instances/test-sample-instance/databases/employee"
2828
tables = ["dept_emp", "dept_manager"]
2929
row_limit = 10000
30-
expire_timestamp = "2027-03-09T16:17:49.637Z"
30+
expire_timestamp = "2027-03-09T16:17:49Z"
3131
}
3232
}
3333
}

provider/data_source_project.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func getProjectMembersSchema(computed bool) *schema.Schema {
191191
Type: schema.TypeString,
192192
Computed: computed,
193193
Optional: true,
194-
Description: "The expiration timestamp in YYYY-MM-DDThh:mm:ss.000Z format",
194+
Description: "The expiration timestamp in YYYY-MM-DDThh:mm:ssZ format",
195195
},
196196
},
197197
},

0 commit comments

Comments
 (0)