()
| 42 | * @returns The contents of the "aws.env" file (throws if it doesn't exist) |
| 43 | */ |
| 44 | export const readAwsSecrets = () => { |
| 45 | const integrationInfo = readIntegrationInfo(); |
| 46 | |
| 47 | return parseEnvFile(readFileSync(join(__dirname, `../integrations/${integrationInfo.integration}/aws.env`))); |
| 48 | }; |
| 49 | |
| 50 | /** |
| 51 | * @returns The contents of the "secrets.env" file for the current integration (throws if it doesn't exist) |
no test coverage detected