Skip to content

Commit

Permalink
feat(integration): guac GCP integration
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Martinez Trivino <miguel@chainloop.dev>
  • Loading branch information
migmartri committed Jun 28, 2023
1 parent 680550c commit 938c446
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/controlplane/plugins/sdk/readme-generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ func updateIntegrationsIndex(plugins sdk.AvailablePlugins) error {
// Replace the table
section := indexHeader + "\n\n" + indexTable + "\n"
// Find the content that starts with the indexHeader and contains a markdown table
// letters, |, _, -, \n, separators, ... are allowed between the indexHeader and the table
r := regexp.MustCompile(fmt.Sprintf("%s\n*[\\w|\\||\\-|\\s|\\.|_|\\[|\\]|\\(|\\)|\\/|:]*", indexHeader))
// letters, |, _, -, \n, separators (i.e comma, {, [, ...]}), ... are allowed between the indexHeader and the table
r := regexp.MustCompile(fmt.Sprintf("%s\n*[\\w|\\||\\-|\\s|\\.|_|\\,|\\[|\\]|\\(|\\)|\\/|:]*", indexHeader))

fileContent = r.ReplaceAllLiteral(fileContent, []byte(section))

Expand Down
10 changes: 0 additions & 10 deletions docs/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,6 @@ Below you can find the list of currently available integrations. If you can't fi
| [discord-webhook](https://github.com/chainloop-dev/chainloop/blob/main/app/controlplane/plugins/core/discord-webhook/v1/README.md) | 1.1 | Send attestations to Discord | |
| [guac](https://github.com/chainloop-dev/chainloop/blob/main/app/controlplane/plugins/core/guac/v1/README.md) | 0.1 | Export Attestation and SBOMs to a blob storage backend so guacsec/guac can consume it | SBOM_CYCLONEDX_JSON, SBOM_SPDX_JSON |

, SBOM_SPDX_JSON |

, SBOM_SPDX_JSON |

, SBOM_SPDX_JSON |

, SBOM_SPDX_JSON |

, SBOM_SPDX_JSON |

## How to use integrations

First, you need to make sure that the integration that you are looking for is available in your Chainloop instance, to do so you will:
Expand Down

0 comments on commit 938c446

Please sign in to comment.