Skip to content

Commit

Permalink
Merge pull request #24 from john-shaskin/feature/unique-codepipeline-…
Browse files Browse the repository at this point in the history
…resource-names

Fix naming for pipeline role and CodeBuild projects. Make physical na…
  • Loading branch information
brettswift committed Oct 15, 2018
2 parents 74b26c3 + 3fdf25b commit a66bcc4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions cumulus/steps/dev_tools/code_build_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ def __init__(self,
def handle(self, chain_context):

print("Adding action %s Stage." % self.action_name)
suffix = "%s%s" % (self.stage_name_to_add, self.action_name)
full_action_name = "%s%s" % (self.stage_name_to_add, self.action_name)

policy_name = "CodeBuildPolicy%s" % chain_context.instance_name
role_name = "CodeBuildRole%s" % suffix
policy_name = "%sCodeBuildPolicy" % chain_context.instance_name
role_name = "CodeBuildRole%s" % full_action_name

codebuild_role = iam.Role(
role_name,
Expand Down Expand Up @@ -91,7 +91,7 @@ def handle(self, chain_context):
chain_context=chain_context,
codebuild_role=codebuild_role,
codebuild_environment=self.environment,
name=self.action_name + suffix,
name=full_action_name,
)

code_build_action = cumulus.types.codebuild.buildaction.CodeBuildAction(
Expand Down Expand Up @@ -145,7 +145,7 @@ def create_project(self, chain_context, codebuild_role, codebuild_environment, n
SecurityGroupIds=[Ref(sg)],
)}

project_name = "project%s" % name
project_name = "Project%s" % name

print("Action %s is using buildspec: " % self.action_name)
print(self.buildspec)
Expand All @@ -155,7 +155,7 @@ def create_project(self, chain_context, codebuild_role, codebuild_environment, n
DependsOn=codebuild_role,
Artifacts=artifacts,
Environment=codebuild_environment,
Name=project_name,
Name="%s-%s" % (chain_context.instance_name, project_name),
ServiceRole=troposphere.GetAtt(codebuild_role, 'Arn'),
Source=codebuild.Source(
"Deploy",
Expand Down
2 changes: 1 addition & 1 deletion cumulus/steps/dev_tools/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def handle(self, chain_context):
"""
# TODO: let (force?) bucket to be injected.
pipeline_bucket = Bucket(
"pipelinebucket%s" % chain_context.instance_name,
"PipelineBucket%s" % self.name,
BucketName=self.bucket_name,
VersioningConfiguration=VersioningConfiguration(
Status="Enabled"
Expand Down

0 comments on commit a66bcc4

Please sign in to comment.