1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[SM-1465] - Add Terraform provider to integrations page (#16876)

* fix: add Datadog org integration service to SM integrations module

* misc: add Terraform provider integration card

* misc: update Ansible integration link
This commit is contained in:
tangowithfoxtrot
2025-10-27 08:22:13 -07:00
committed by GitHub
parent f452f39f3c
commit 93227324bf
3 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="98" height="111" viewBox="0 0 98 111" fill="none">
<path d="M67.34 37.0927V72.1132L97.68 54.6122V19.5547L67.34 37.0927Z" fill="#4040B2"></path>
<path d="M33.6699 19.5547L64.0099 37.0927V72.1132L33.6699 54.5937V19.5547Z" fill="#5C4EE5"></path>
<path d="M0 0V35.039L30.34 52.5585V17.5195L0 0ZM33.67 93.4805L64.01 111V75.961L33.67 58.4415V93.4805Z" fill="#5C4EE5"></path>
</svg>

After

Width:  |  Height:  |  Size: 468 B

View File

@@ -74,7 +74,13 @@ describe("IntegrationsComponent", () => {
(integrationList.componentInstance as IntegrationGridComponent).integrations.map(
(i) => i.name,
),
).toEqual(["GitHub Actions", "GitLab CI/CD", "Ansible", "Kubernetes Operator"]);
).toEqual([
"GitHub Actions",
"GitLab CI/CD",
"Ansible",
"Kubernetes Operator",
"Terraform Provider",
]);
expect(
(sdkList.componentInstance as IntegrationGridComponent).integrations.map((i) => i.name),

View File

@@ -36,7 +36,7 @@ export class IntegrationsComponent {
},
{
name: "Ansible",
linkURL: "https://bitwarden.com/help/ansible-integration/",
linkURL: "https://galaxy.ansible.com/ui/repo/published/bitwarden/secrets",
image: "../../../../../../../images/secrets-manager/integrations/ansible.svg",
type: IntegrationType.Integration,
},
@@ -96,6 +96,13 @@ export class IntegrationsComponent {
type: IntegrationType.Integration,
newBadgeExpiration: "2024-8-12",
},
{
name: "Terraform Provider",
linkURL: "https://registry.terraform.io/providers/bitwarden/bitwarden-secrets/latest",
image: "../../../../../../../images/secrets-manager/integrations/terraform.svg",
type: IntegrationType.Integration,
newBadgeExpiration: "2025-12-12", // December 12, 2025
},
];
}