skip to Main Content

CDK: How to use same Iam role between 2 different stacks? – Amazon Web Sevices

I have a stack which creates 2 different codebuild projects. const codeBuildProject = new CodeBuildProjects(this, 'pipelineCodeBuildProjects', { PlanProjectName: 'one-project', DeployProjectName: 'second-project' OneProjectIamRoleName: 'iam-role', twoProjectIamRoleName: 'iam-role' }) This is stack class export class CodeBuildProjects extends cdk.Stack { public readonly plan: codeBuildProject;…

VIEW QUESTION

How to pass parameters from one Pass state to another? – Amazon Web Sevices

How to pass parameters from one Pass state to another? aws_stepfunctions.JsonPath.string_at is working fine when invoking lambda function (insude aws_stepfunctions.TaskInput.from_object) but it is not working with Pass state (inside aws_stepfunctions.Result.from_object I have: initial_pass = aws_stepfunctions.Pass( self, "initial_pass", result=aws_stepfunctions.Result.from_object( { "iterator":…

VIEW QUESTION
Back To Top
Search