/** * AWS SSH Bridge Fixes * * Bridges the gap between AWS EC2 key pair creation and the factiii * SSH key convention (Ansible Vault PROD_SSH + ~/.ssh/prod_deploy_key). * * After EC2 provisions a key pair and saves it to ~/.ssh/prod_deploy_key, * this fix automatically stores it in Ansible Vault as PROD_SSH so that: * - Other dev machines can pull the key via `npx stack deploy --secrets write-ssh-keys` * - The `missing-prod-ssh` secrets check passes * - canReach('prod') returns { reachable: true, via: 'local' } on subsequent runs * * Uses AWS SDK v3 for Elastic IP lookup. */ import type { Fix } from '../../../../types/index.js'; export declare const sshBridgeFixes: Fix[]; //# sourceMappingURL=ssh-bridge.d.ts.map