Hello, I am creating the code pipeline using Types...
# typescript
g
Hello, I am creating the code pipeline using Typescript.
Copy code
stages: [
        {
            name: "Source",
            actions: [{
                name: "Source",
                category: "Source",
                owner: "ThirdParty",
                provider: "Github",
                version: "1",
                outputArtifacts: ["source_output"],
                configuration: {
                    ConnectionArn: "",
                    FullRepositoryId: "",
                    BranchName: "develop",
                },
            }],
        },
Its returning me this error.
Copy code
Error creating CodePipeline: InvalidActionDeclarationException: ActionType (Category: 'Source', Provider: 'Github', Owner: 'ThirdParty', Version: '1') in action 'Source' is not available in region 'US_WEST_2'
b
hey, that looks like an AWS error rather than a Pulumi error, you'll need to ask your AWS TAM/support
it's saying the feature set you've selected isnt available in the us-west-2 region
g
I was trying to select the source as
Github
instead of
CodeStarSourceConnection.
It works well with
CodeStarSourceConnection
. But it is unable to read the
Github
.