mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 10:43:35 +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:
@@ -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),
|
||||
|
||||
@@ -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
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user