it-tools/src/tools/ansible-vault-crypt-decrypt/index.ts
2024-03-03 11:27:59 +01:00

13 lines
435 B
TypeScript

import { LockSquare } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Ansible vault crypt decrypt',
path: '/ansible-vault-crypt-decrypt',
description: 'Encrypt and decrypt Ansible Vault Secrets',
keywords: ['ansible', 'vault', 'crypt', 'decrypt'],
component: () => import('./ansible-vault-crypt-decrypt.vue'),
icon: LockSquare,
createdAt: new Date('2024-02-25'),
});