@aws-quickstart/eks-blueprints
    Preparing search index...

    Interface GitHubSourceOptions

    Options for GitHub sources

    interface GitHubSourceOptions {
        actionName?: string;
        authentication?: SecretValue;
        trigger?: GitHubTrigger;
    }
    Index

    Properties

    actionName?: string

    The action name used for this source in the CodePipeline

    - The repository string
    
    authentication?: SecretValue

    A GitHub OAuth token to use for authentication.

    It is recommended to use a Secrets Manager Secret to obtain the token:

    const oauth = cdk.SecretValue.secretsManager('my-github-token');
    

    The GitHub Personal Access Token should have these scopes:

    • repo - to read the repository
    • admin:repo_hook - if you plan to use webhooks (true by default)
    trigger?: GitHubTrigger

    How AWS CodePipeline should be triggered

    With the default value "WEBHOOK", a webhook is created in GitHub that triggers the action. With "POLL", CodePipeline periodically checks the source for changes. With "None", the action is not triggered through changes in the source.

    To use WEBHOOK, your GitHub Personal Access Token should have admin:repo_hook scope (in addition to the regular repo scope).

    GitHubTrigger.WEBHOOK