Issue resolved. There is a service role created fo...
# general
c
Issue resolved. There is a service role created for the specific build project. You must add the appropriate IAM permissions to that account to CRUD your infrastructure. Also buildspec.yml was cleaned up and simplified to be just this:
Copy code
version: 0.2

phases:
  install:
    commands:
      # pulumi
      - curl -fsSL <https://get.pulumi.com/> | sh
      - export PATH=$PATH:$HOME/.pulumi/bin
  build:
    commands:
      - npm install
      - pulumi stack select dev
      - pulumi up --yes