Skip to content

Commit

Permalink
Add Snowflake integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ckluy31 committed Nov 12, 2024
1 parent a3ccf80 commit 7c68502
Show file tree
Hide file tree
Showing 7 changed files with 718 additions and 321 deletions.
5 changes: 5 additions & 0 deletions .changeset/khaki-papayas-bake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@common-fate/sdk": minor
---

Add Snowflake integration.
669 changes: 348 additions & 321 deletions gen/commonfate/control/integration/v1alpha1/integration.pb.go

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

173 changes: 173 additions & 0 deletions gen/commonfate/control/integration/v1alpha1/snowflake.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

141 changes: 141 additions & 0 deletions gen/commonfate/control/integration/v1alpha1/snowflake.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import "commonfate/control/integration/v1alpha1/opsgenie.proto";
import "commonfate/control/integration/v1alpha1/pagerduty.proto";
import "commonfate/control/integration/v1alpha1/s3_log_destination.proto";
import "commonfate/control/integration/v1alpha1/slack.proto";
import "commonfate/control/integration/v1alpha1/snowflake.proto";
import "commonfate/control/integration/v1alpha1/webhook.proto";
import "commonfate/filters/v1alpha1/filters.proto";
import "google/protobuf/timestamp.proto";
Expand Down Expand Up @@ -67,6 +68,7 @@ message Config {
S3LogDestination s3_log_destination = 12;
AWSProxy aws_proxy = 13;
Jira jira = 15;
Snowflake snowflake = 16;
}
}

Expand Down
8 changes: 8 additions & 0 deletions proto/commonfate/control/integration/v1alpha1/snowflake.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
syntax = "proto3";
package commonfate.control.integration.v1alpha1;

message Snowflake {
string account_id = 1;
string client_id = 2;
string client_secret_secret_path = 3;
}

0 comments on commit 7c68502

Please sign in to comment.