forked from opengovern/og-describer-template
-
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.
- Loading branch information
Showing
27 changed files
with
867 additions
and
11 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
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 |
---|---|---|
@@ -1,9 +1,79 @@ | ||
[ | ||
{ | ||
"ResourceName": "AWS::Redshift::Snapshot", | ||
"ListDescriber": "ParallelDescribeRegional(describer.RedshiftSnapshot)", | ||
"GetDescriber": "ParallelDescribeRegionalSingleResource(describer.GetRedshiftSnapshot)", | ||
"SteampipeTable": "aws_redshift_snapshot", | ||
"Model": "RedshiftSnapshot" | ||
"ResourceName": "Render/Blueprint", | ||
"ListDescriber": "DescribeListByRender(describer.ListBlueprints)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetBlueprint)", | ||
"SteampipeTable": "render_blueprint", | ||
"Model": "Blueprint" | ||
}, | ||
{ | ||
"ResourceName": "Render/Deploy", | ||
"ListDescriber": "DescribeListByRender(describer.ListDeploys)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetDeploy)", | ||
"SteampipeTable": "render_deploy", | ||
"Model": "Deploy" | ||
}, | ||
{ | ||
"ResourceName": "Render/Disk", | ||
"ListDescriber": "DescribeListByRender(describer.ListDisks)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetDisk)", | ||
"SteampipeTable": "render_disk", | ||
"Model": "Disk" | ||
}, | ||
{ | ||
"ResourceName": "Render/EnvGroup", | ||
"ListDescriber": "DescribeListByRender(describer.ListEnvGroups)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetEnvGroup)", | ||
"SteampipeTable": "render_env_group", | ||
"Model": "EnvGroup" | ||
}, | ||
{ | ||
"ResourceName": "Render/Environment", | ||
"ListDescriber": "DescribeListByRender(describer.ListEnvironments)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetEnvironment)", | ||
"SteampipeTable": "render_environment", | ||
"Model": "Environment" | ||
}, | ||
{ | ||
"ResourceName": "Render/Header", | ||
"ListDescriber": "DescribeListByRender(describer.ListHeaders)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetHeader)", | ||
"SteampipeTable": "render_header", | ||
"Model": "Header" | ||
}, | ||
{ | ||
"ResourceName": "Render/Job", | ||
"ListDescriber": "DescribeListByRender(describer.ListJobs)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetJob)", | ||
"SteampipeTable": "render_job", | ||
"Model": "Job" | ||
}, | ||
{ | ||
"ResourceName": "Render/PostgresInstance", | ||
"ListDescriber": "DescribeListByRender(describer.ListPostgresInstances)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetPostgresInstance)", | ||
"SteampipeTable": "render_postgres_instance", | ||
"Model": "Postgres" | ||
}, | ||
{ | ||
"ResourceName": "Render/Project", | ||
"ListDescriber": "DescribeListByRender(describer.ListProjects)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetProject)", | ||
"SteampipeTable": "render_project", | ||
"Model": "Project" | ||
}, | ||
{ | ||
"ResourceName": "Render/Route", | ||
"ListDescriber": "DescribeListByRender(describer.ListRoutes)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetRoute)", | ||
"SteampipeTable": "render_route", | ||
"Model": "Route" | ||
}, | ||
{ | ||
"ResourceName": "Render/Service", | ||
"ListDescriber": "DescribeListByRender(describer.ListServices)", | ||
"GetDescriber": "DescribeSingleByRender(describer.GetService)", | ||
"SteampipeTable": "render_service", | ||
"Model": "Service" | ||
} | ||
] |
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,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Questions | ||
url: https://turbot.com/community/join | ||
about: GitHub issues in this repository are only intended for bug reports and feature requests. Other issues will be closed. Please ask and answer questions through the Steampipe Slack community. | ||
- name: Steampipe CLI Bug Reports and Feature Requests | ||
url: https://github.com/turbot/steampipe/issues/new/choose | ||
about: Steampipe CLI has its own codebase. Bug reports and feature requests for those pieces of functionality should be directed to that repository. |
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,18 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
pull-request-branch-name: | ||
separator: "-" | ||
assignees: | ||
- "misraved" | ||
- "madhushreeray30" | ||
labels: | ||
- "dependencies" |
12 changes: 12 additions & 0 deletions
12
steampipe-plugin-render/.github/workflows/golangci-lint.yml
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,12 @@ | ||
name: golangci-lint | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
golangci_lint_workflow: | ||
uses: turbot/steampipe-workflows/.github/workflows/golangci-lint.yml@main |
13 changes: 13 additions & 0 deletions
13
steampipe-plugin-render/.github/workflows/registry-publish.yml
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,13 @@ | ||
name: Build and Deploy OCI Image | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
registry_publish_workflow_ghcr: | ||
uses: turbot/steampipe-workflows/.github/workflows/registry-publish-ghcr.yml@main | ||
secrets: inherit | ||
with: | ||
releaseTimeout: 60m |
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,17 @@ | ||
name: Stale Issues and PRs | ||
on: | ||
schedule: | ||
- cron: "30 23 * * *" | ||
workflow_dispatch: | ||
inputs: | ||
dryRun: | ||
description: Set to true for a dry run | ||
required: false | ||
default: "false" | ||
type: string | ||
|
||
jobs: | ||
stale_workflow: | ||
uses: turbot/steampipe-workflows/.github/workflows/stale.yml@main | ||
with: | ||
dryRun: ${{ github.event.inputs.dryRun }} |
12 changes: 12 additions & 0 deletions
12
steampipe-plugin-render/.github/workflows/steampipe-anywhere.yml
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,12 @@ | ||
name: Release Steampipe Anywhere Components | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
|
||
jobs: | ||
anywhere_publish_workflow: | ||
uses: turbot/steampipe-workflows/.github/workflows/steampipe-anywhere.yml@main | ||
secrets: inherit |
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,9 @@ | ||
name: Sync Labels | ||
on: | ||
schedule: | ||
- cron: "30 22 * * 1" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync_labels_workflow: | ||
uses: turbot/steampipe-workflows/.github/workflows/sync-labels.yml@main |
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,19 @@ | ||
# Editor cache and lock files | ||
*.swp | ||
*.swo | ||
|
||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ |
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,37 @@ | ||
# This is an example goreleaser.yaml file with some sane defaults. | ||
# Make sure to check the documentation at http://goreleaser.com | ||
before: | ||
hooks: | ||
- go mod tidy | ||
builds: | ||
- env: | ||
- CGO_ENABLED=0 | ||
- GO111MODULE=on | ||
- GOPRIVATE=github.com/turbot | ||
goos: | ||
- linux | ||
- darwin | ||
|
||
goarch: | ||
- amd64 | ||
- arm64 | ||
|
||
id: "steampipe" | ||
binary: "{{ .ProjectName }}.plugin" | ||
flags: | ||
- -tags=netgo | ||
|
||
archives: | ||
- format: gz | ||
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}" | ||
files: | ||
- none* | ||
checksum: | ||
name_template: "{{ .ProjectName }}_{{ .Version }}_SHA256SUMS" | ||
algorithm: sha256 | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" |
Oops, something went wrong.