Hello, I had a codebuild.Project() configured to ...
# python
w
Hello, I had a codebuild.Project() configured to source from github, with
source_version="master"
. I switched this CodeBuild project to an S3 source, and removed the
source_version
parameter entirely (it's optional for S3, and defaults to the latest version of the source artifact). After a
pulumi up
, CodeBuild kept the value at "master", I had to explicitly add
source_version=""
to my codebuild.Project(). Is this the expected behavior? FYI @broad-dog-22463 @bright-orange-69401