Skip to content

Commit f766a76

Browse files
docs(tutorials): sync tutorial .tf files with provider 3.20.0 (#202)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 0de1ccc commit f766a76

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

tutorials/3-projects.tf

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,20 @@ resource "bytebase_project" "project-one" {
1616
# Issue labels
1717
issue_labels {
1818
value = "schema-change"
19-
color = "#0066CC"
19+
color {
20+
red = 0
21+
green = 0.4
22+
blue = 0.8
23+
}
2024
group = "type"
2125
}
2226
issue_labels {
2327
value = "data-change"
24-
color = "#CC6600"
28+
color {
29+
red = 0.8
30+
green = 0.4
31+
blue = 0
32+
}
2533
group = "type"
2634
}
2735

tutorials/5-sql-review.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ resource "bytebase_review_config" "sample" {
3535
}
3636
}
3737
rules {
38-
type = "STATEMENT_MAXIMUM_LIMIT_VALUE"
38+
type = "STATEMENT_INSERT_ROW_LIMIT"
3939
engine = "POSTGRES"
4040
level = "ERROR"
4141
number_payload = 1000

0 commit comments

Comments
 (0)