This message was deleted.
# aws
s
This message was deleted.
c
Copy code
source=aws.codebuild.ProjectSourceArgs(
            type="S3",
            location=f"{codebuild_functional_bucket.id}/"

        ),
Fixed by changing to:
Copy code
source=aws.codebuild.ProjectSourceArgs(
            type="S3",
            location=codebuild_functional_bucket.id.apply(lambda id: f"{id}/"),

        ),
r
You should also be able to use Output.concat here for slightly cleaner code
👍 1