Skip to content

Commit

Permalink
fix(rules): add Databricks
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 4, 2023
1 parent 05c8c32 commit 127e17f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ exports[`all > should match everything 1`] = `
"couchbase",
"crowdin",
"cypressci",
"databricks",
"datadog",
"deferrun",
"deno",
Expand Down
13 changes: 13 additions & 0 deletions src/rules/etl/databricks.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { register } from '../../register.js';

register({
tech: 'databricks',
name: 'Databricks',
type: 'etl',
dependencies: [
{
type: 'terraform',
name: 'registry.terraform.io/databricks/databricks',
},
],
});
1 change: 1 addition & 0 deletions src/rules/etl/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ import './airbyte.js';
import './apache_airflow.js';
import './apache_flink.js';
import './apache_storm.js';
import './databricks.js';
import './gcp.dataproc.js';
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ exports[`terraform (lockfile) > should match everything 1`] = `
"cloudflare",
"cockroachdb",
"couchbase",
"databricks",
"datadog",
"digitalocean",
"elasticsearch",
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export type AllowedKeys =
| 'css'
| 'cypressci'
| 'dart'
| 'databricks'
| 'datadog'
| 'deferrun'
| 'deno'
Expand Down

0 comments on commit 127e17f

Please sign in to comment.