-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add connection configuration documentation (#131) * Add new configuration document for connection abuseipdb (#94) * Add new configuration document for connection alicloud (#95) * Add new configuration document for connection azure (#97) * Add new configuration document for connection bitbucket (#98) * Add new configuration document for connection clickup (#99) * Add new configuration document for connection datadog (#100) * Add new configuration document for connection discord (#101) * Add new configuration document for connection freshdesk (#102) * Add new configuration document for connection github (#103) * Add new configuration document for connection gitlab (#104) * Add new configuration document for connection ip2locationio (#105) * Add new configuration document for connection ipstack (#106) * Add new configuration document for connection jira (#107) * Add new configuration document for connection jumpcloud (#108) * Add new configuration document for connection mastodon (#109) * Add new configuration document for connection microsoft_teams (#110) * Add new configuration document for connection okta (#111) * Add new configuration document for connection opsgenie (#112) * Add new configuration document for connection openai (#113) * Add new configuration document for connection pagerduty (#114) * Add new configuration document for connection sendgrid (#115) * Add new configuration document for connection servicenow (#116) * Add new configuration document for connection slack (#117) * Add new configuration document for connection turbot_guardrails (#118) * Add new configuration document for connection turbot_pipes (#119) * Add new configuration document for connection uptime_robot (#120) * Add new configuration document for connection urlscan (#121) * Add new configuration document for connection vault (#122) * Add new configuration document for connection virus_total (#123) * Add new configuration document for connection zendesk (#124) * Add new configuration document for connection pagerduty (#125) * Add new configuration document for connection aws (#96) * Add new configuration document for connection gcp (#128) * Add new configuration document for connection slack (#127) * Create Index and Template for connection documents (#129) * add .gitignore * add connection_import docs, update sidebar for connection, connnection_import reference docs * add deprecation warnings for credentials * change references, examples from "credential" to "connection". Updated run/connection examples with new connection type syntax * update build/mod-variables for new connection, notifier types and enums * update flowpipe hcl variable, param reference for new connection, notifier types and enums * update example in flowpipe-hcl/variable for new capabilities-- connection type and enum * added exit codes to cli docs * add new db connection types, update docs for mod database args (WIP) * updates for connection docs for duckdb, postgres, sqlite, steampipe * add new connections to sidebar * updates for connection docs for duckdb, postgres, sqlite, steampipe * updates for connection docs for duckdb, postgres, sqlite, steampipe * change references to version 0.10.0 -> 1.0.0 * add mysql connection docs, update docs for other db connections --------- Co-authored-by: Omero Saienni <[email protected]>
- Loading branch information
1 parent
0039f11
commit 157e600
Showing
91 changed files
with
2,497 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
/output | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Editor cache and lock files | ||
*.swp | ||
*.swo | ||
|
||
# vercel | ||
.vercel | ||
|
||
# Jetbrains | ||
.idea | ||
|
||
# Auto-generated robots.txt and sitemap.xml | ||
/public/robots.txt | ||
/public/sitemap.xml | ||
/public/blog/feed.xml | ||
/public/changelog/feed.xml | ||
/public/images/docs | ||
/public/images/reference_examples | ||
/steampipe-docs-local | ||
/tmp | ||
content/docs | ||
|
||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,10 +41,17 @@ mod "aws" { | |
## Example - Composite Mod with Dependency | ||
|
||
```hcl | ||
variable "database" { | ||
type = connection.steampipe | ||
description = "Steampipe database connection string." | ||
default = connection.steampipe.default | ||
} | ||
mod "deactivate_expired_aws_iam_access_keys" { | ||
title = "Deactivate expired AWS IAM keys" | ||
description = "Deactivates AWS IAM keys that have been active for a certain period of time." | ||
database = var.database | ||
require { | ||
flowpipe { | ||
min_version = "0.1.0" | ||
|
@@ -68,7 +75,8 @@ mod "deactivate_expired_aws_iam_access_keys" { | |
| Name | Type | Required? | Description | ||
|-|-|-|- | ||
| `categories` | List(String) | Optional | A list of labels, used to categorize mods (such as on the Flowpipe Hub). | ||
| `color` | String |Optional | A hexadecimal RGB value to use as the color scheme for the mod on hub.flowpipe.io. | ||
| `color` | String | Optional | A hexadecimal RGB value to use as the color scheme for the mod on hub.flowpipe.io. | ||
| `database` | String | Optional | The database to use as the default for [query steps](/docs/flowpipe-hcl/step/query) and [query triggers](/docs/flowpipe-hcl/trigger/query). The `database` may be a connection reference (`connection.steampipe.default`), a connection string (`postgres://[email protected]:9193/steampipe`), or a Pipes workspace (`acme/anvils`). If not set, the default is the local Steampipe database instance. | ||
| `description` | String | Optional | A string containing a short description. | ||
| `documentation` | String (Markdown)| Optional | A markdown string containing a long form description, used as documentation for the mod on hub.flowpipe.io. | ||
| `icon` | String | Optional | The URL of an icon to use for the mod on hub.flowpipe.io. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.