File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ Available targets:
244244
245245| Name | Source | Version |
246246| ------| --------| ---------|
247- | <a name =" module_cicd " ></a > [ cicd] ( #module\_ cicd ) | cloudposse/cicd/aws | 0.12.0 |
247+ | <a name =" module_cicd " ></a > [ cicd] ( #module\_ cicd ) | cloudposse/cicd/aws | 0.19.1 |
248248| <a name =" module_ecr " ></a > [ ecr] ( #module\_ ecr ) | cloudposse/ecr/aws | 0.34.0 |
249249| <a name =" module_efs " ></a > [ efs] ( #module\_ efs ) | cloudposse/efs/aws | 0.32.7 |
250250| <a name =" module_efs_backup " ></a > [ efs\_ backup] ( #module\_ efs\_ backup ) | cloudposse/backup/aws | 0.13.1 |
Original file line number Diff line number Diff line change 1616
1717| Name | Source | Version |
1818| ------| --------| ---------|
19- | <a name =" module_cicd " ></a > [ cicd] ( #module\_ cicd ) | cloudposse/cicd/aws | 0.12.0 |
19+ | <a name =" module_cicd " ></a > [ cicd] ( #module\_ cicd ) | cloudposse/cicd/aws | 0.19.1 |
2020| <a name =" module_ecr " ></a > [ ecr] ( #module\_ ecr ) | cloudposse/ecr/aws | 0.34.0 |
2121| <a name =" module_efs " ></a > [ efs] ( #module\_ efs ) | cloudposse/efs/aws | 0.32.7 |
2222| <a name =" module_efs_backup " ></a > [ efs\_ backup] ( #module\_ efs\_ backup ) | cloudposse/backup/aws | 0.13.1 |
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ module "efs_backup" {
105105# CodePipeline/CodeBuild to build Jenkins Docker image, store it to a ECR repo, and deploy it to Elastic Beanstalk running Docker stack
106106module "cicd" {
107107 source = " cloudposse/cicd/aws"
108- version = " 0.12.0 "
108+ version = " 0.19.1 "
109109 attributes = [" cicd" ]
110110 elastic_beanstalk_application_name = module. elastic_beanstalk_application . elastic_beanstalk_application_name
111111 elastic_beanstalk_environment_name = module. elastic_beanstalk_environment . name
@@ -206,6 +206,7 @@ resource "aws_iam_policy" "slaves" {
206206 path = " /"
207207 description = " Policy for EC2 instance profile to allow launching Jenkins slaves"
208208 policy = data. aws_iam_policy_document . slaves . json
209+ tags = module. label_slaves . tags
209210}
210211
211212# Attach Policy to the EC2 instance profile to allow Jenkins master to launch and control slave EC2 instances
Original file line number Diff line number Diff line change @@ -90,12 +90,12 @@ func TestExamplesComplete(t *testing.T) {
9090 // Run `terraform output` to get the value of an output variable
9191 codebuildProjectName := terraform .Output (t , terraformOptions , "codebuild_project_name" )
9292 // Verify we're getting back the outputs we expect
93- assert .Equal (t , "eg-test-jenkins-build- " + randID + "-cicd" , codebuildProjectName )
93+ assert .Equal (t , "eg-test-jenkins-" + randID + "-cicd-build " , codebuildProjectName )
9494
9595 // Run `terraform output` to get the value of an output variable
9696 codebuildCacheBucketName := terraform .Output (t , terraformOptions , "codebuild_cache_bucket_name" )
9797 // Verify we're getting back the outputs we expect
98- assert .Contains (t , codebuildCacheBucketName , "eg-test-jenkins-build- " + randID + "-cicd" )
98+ assert .Contains (t , codebuildCacheBucketName , "eg-test-jenkins-" + randID + "-cicd-build " )
9999
100100 // Run `terraform output` to get the value of an output variable
101101 codepipelineId := terraform .Output (t , terraformOptions , "codepipeline_id" )
You can’t perform that action at this time.
0 commit comments