mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Feedback
This commit is contained in:
@@ -149,9 +149,9 @@ export const BitbucketSecretScanningFactory = () => {
|
||||
filteredRepos.push(...repos.filter((repo) => includeRepos.includes(repo.full_name)));
|
||||
}
|
||||
|
||||
return filteredRepos.map(({ full_name }) => ({
|
||||
return filteredRepos.map(({ full_name, uuid }) => ({
|
||||
name: full_name,
|
||||
externalId: full_name,
|
||||
externalId: uuid,
|
||||
type: SecretScanningResource.Repository
|
||||
}));
|
||||
};
|
||||
@@ -188,7 +188,7 @@ export const BitbucketSecretScanningFactory = () => {
|
||||
> = ({ repository }) => {
|
||||
return {
|
||||
name: repository.full_name,
|
||||
externalId: repository.full_name,
|
||||
externalId: repository.uuid,
|
||||
type: SecretScanningResource.Repository
|
||||
};
|
||||
};
|
||||
|
||||
@@ -9,6 +9,14 @@ export const SecretScanningDataSourceSchema = z.discriminatedUnion("type", [
|
||||
]);
|
||||
|
||||
export const SecretScanningFindingSchema = z.discriminatedUnion("dataSourceType", [
|
||||
GitHubFindingSchema,
|
||||
BitbucketFindingSchema
|
||||
GitHubFindingSchema.describe(
|
||||
JSON.stringify({
|
||||
title: "GitHub"
|
||||
})
|
||||
),
|
||||
BitbucketFindingSchema.describe(
|
||||
JSON.stringify({
|
||||
title: "Bitbucket"
|
||||
})
|
||||
)
|
||||
]);
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import type { EmitterWebhookEventName } from "@octokit/webhooks/dist-types/types";
|
||||
import { PushEvent } from "@octokit/webhooks-types";
|
||||
import crypto from "crypto";
|
||||
import { Probot } from "probot";
|
||||
import { z } from "zod";
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ export const registerBitbucketConnectionRouter = async (server: FastifyZodProvid
|
||||
}),
|
||||
response: {
|
||||
200: z.object({
|
||||
repositories: z.object({ slug: z.string(), full_name: z.string() }).array()
|
||||
repositories: z.object({ slug: z.string(), full_name: z.string(), uuid: z.string() }).array()
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
@@ -34,6 +34,7 @@ export type TBitbucketWorkspace = {
|
||||
};
|
||||
|
||||
export type TBitbucketRepo = {
|
||||
uuid: string;
|
||||
full_name: string; // workspace-slug/repo-slug
|
||||
slug: string;
|
||||
};
|
||||
|
||||
@@ -6,7 +6,7 @@ description: "Learn how to configure secret scanning for Bitbucket."
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Create a [Bitbucket Connection](/integrations/app-connections/bitbucket)
|
||||
- Create a [Bitbucket Connection](/integrations/app-connections/bitbucket) with Secret Scanning permissions
|
||||
|
||||
## Create a Bitbucket Data Source in Infisical
|
||||
|
||||
@@ -17,6 +17,8 @@ description: "Learn how to configure secret scanning for Bitbucket."
|
||||
|
||||
2. Select the **Bitbucket** option.
|
||||
|
||||

|
||||
|
||||
3. Configure which workspace and repositories you would like to scan. Then click **Next**.
|
||||

|
||||
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 330 KiB After Width: | Height: | Size: 0 B |
BIN
docs/images/platform/secret-scanning/bitbucket/step-2.png
Normal file
BIN
docs/images/platform/secret-scanning/bitbucket/step-2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
@@ -5,21 +5,29 @@ description: "Learn how to configure a Bitbucket Connection for Infisical."
|
||||
|
||||
Infisical supports the use of [API Tokens](https://support.atlassian.com/bitbucket-cloud/docs/api-tokens/) to connect with Bitbucket.
|
||||
|
||||
<Tip>
|
||||
Infisical recommends creating a dedicated Bitbucket account with access restricted to only the repositories you want to scan.
|
||||
</Tip>
|
||||
|
||||
## Create Bitbucket Access Token
|
||||
|
||||
<Steps>
|
||||
<Step title="Create API Token">
|
||||
Go to [Account API Tokens](https://id.atlassian.com/manage-profile/security/api-tokens) and click 'Create API token with scopes'.
|
||||
Go to [Account API Tokens](https://id.atlassian.com/manage-profile/security/api-tokens) and click **Create API token with scopes**.
|
||||
|
||||

|
||||
</Step>
|
||||
<Step title="Set Name and Expiry">
|
||||
Set the name and expiration date of the token, then click 'Next'. Keep in mind that you'll need to manually replace the token after it expires.
|
||||
Set the name and expiration date of the token, then click **Next**.
|
||||
|
||||

|
||||
|
||||
<Note>
|
||||
Keep in mind that you'll need to manually replace the token after it expires.
|
||||
</Note>
|
||||
</Step>
|
||||
<Step title="Select 'Bitbucket'">
|
||||
Select 'Bitbucket' and then click 'Next'.
|
||||
Select 'Bitbucket' and then click **Next**.
|
||||
|
||||

|
||||
</Step>
|
||||
@@ -36,12 +44,13 @@ Infisical supports the use of [API Tokens](https://support.atlassian.com/bitbuck
|
||||
delete:webhook:bitbucket
|
||||
read:repository:bitbucket
|
||||
```
|
||||
|
||||

|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
Click 'Next'.
|
||||
|
||||

|
||||
</Step>
|
||||
<Step title="Copy Token">
|
||||
Save the API Token for later steps.
|
||||
@@ -61,7 +70,7 @@ Infisical supports the use of [API Tokens](https://support.atlassian.com/bitbuck
|
||||

|
||||
</Step>
|
||||
<Step title="Select Bitbucket Connection">
|
||||
Click the 'Add new connection' button and select 'Bitbucket' from the list of available connections.
|
||||
Click the **Add new connection** button and select 'Bitbucket' from the list of available connections.
|
||||
</Step>
|
||||
<Step title="Fill out the Bitbucket Connection Modal">
|
||||
Complete the Bitbucket Connection form by entering:
|
||||
|
||||
@@ -3,6 +3,7 @@ export type TBitbucketWorkspace = {
|
||||
};
|
||||
|
||||
export type TBitbucketRepo = {
|
||||
uuid: string;
|
||||
slug: string;
|
||||
full_name: string; // workspace-slug/repo-slug
|
||||
};
|
||||
|
||||
@@ -294,7 +294,7 @@ export const SecretScanningDataSourcesTable = ({ dataSources }: Props) => {
|
||||
<Table>
|
||||
<THead>
|
||||
<Tr>
|
||||
<Th className="w-60">Platform</Th>
|
||||
<Th className="min-w-36">Platform</Th>
|
||||
<Th className="w-1/3">
|
||||
<div className="flex items-center">
|
||||
Name
|
||||
|
||||
Reference in New Issue
Block a user