We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b52370 commit cf6750cCopy full SHA for cf6750c
tutorials/3-projects.tf
@@ -6,7 +6,22 @@ resource "bytebase_project" "project-one" {
6
resource_id = "project-one"
7
title = "Project One"
8
9
+ allow_modify_statement = true
10
+ auto_resolve_issue = false
11
+ auto_enable_backup = false
12
+
13
databases = bytebase_instance.test.databases
14
15
+ webhooks {
16
+ title = "Sample webhook 1"
17
+ type = "SLACK"
18
+ url = "https://webhook.site/91fcd52a-39f1-4e7b-a43a-ddf72796d6b1"
19
+ notification_types = [
20
+ "NOTIFY_ISSUE_APPROVED",
21
+ "NOTIFY_PIPELINE_ROLLOUT",
22
+ "ISSUE_CREATE",
23
+ ]
24
+ }
25
}
26
27
# Project Two
0 commit comments