cdk/cicd/Base.py [62:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            },
            description='Pipeline for CodeBuild',
            timeout=core.Duration.minutes(15),
        )
        scan = aws_codebuild.PipelineProject(
            self, "scan",
            project_name=f"{props['namespace']}-scan",
            build_spec=aws_codebuild.BuildSpec.from_source_filename(
                filename='scan_buildspec.yml'),
            environment=aws_codebuild.BuildEnvironment(
                privileged=False,
                #build_image=aws_codebuild.LinuxBuildImage.from_ecr_repository(repository=docker_asset.repository, tag=docker_asset.asset_hash)
                build_image=aws_cdk.aws_codebuild.LinuxBuildImage.from_docker_registry(
                    name='public.ecr.aws/f3n2w4j5/policy-as-code:latest')

            ),
            # pass the ecr repo uri into the codebuild project so codebuild knows where to push
            environment_variables={
                'tag': aws_codebuild.BuildEnvironmentVariable(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



terraform/cicd/Base.py [48:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            },
            description='Pipeline for CodeBuild',
            timeout=core.Duration.minutes(15),
        )
        scan = aws_codebuild.PipelineProject(
            self, "scan",
            project_name=f"{props['namespace']}-scan",
            build_spec=aws_codebuild.BuildSpec.from_source_filename(
                filename='scan_buildspec.yml'),
            environment=aws_codebuild.BuildEnvironment(
                privileged=False,
                #build_image=aws_codebuild.LinuxBuildImage.from_ecr_repository(repository=docker_asset.repository, tag=docker_asset.asset_hash)
                build_image=aws_cdk.aws_codebuild.LinuxBuildImage.from_docker_registry(
                    name='public.ecr.aws/f3n2w4j5/policy-as-code:latest')

            ),
            # pass the ecr repo uri into the codebuild project so codebuild knows where to push
            environment_variables={
                'tag': aws_codebuild.BuildEnvironmentVariable(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



