import { Config, Output } from '@pulumi/pulumi'; import { ServiceSecret } from '../utils/secrets'; class GitHubIntegrationSecret extends ServiceSecret<{ appId: string | Output; privateKey: string | Output; }> {} export function configureGithubApp() { const githubAppConfig = new Config('ghapp'); const githubSecret = new GitHubIntegrationSecret('gitub-app', { appId: githubAppConfig.require('id'), privateKey: githubAppConfig.requireSecret('key'), }); return { name: githubAppConfig.require('name'), secret: githubSecret, }; } export type GitHubApp = ReturnType;