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:
244
244
245
245
| Name | Source | Version |
246
246
| ------| --------| ---------|
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 |
248
248
| <a name =" module_ecr " ></a > [ ecr] ( #module\_ ecr ) | cloudposse/ecr/aws | 0.34.0 |
249
249
| <a name =" module_efs " ></a > [ efs] ( #module\_ efs ) | cloudposse/efs/aws | 0.32.7 |
250
250
| <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 16
16
17
17
| Name | Source | Version |
18
18
| ------| --------| ---------|
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 |
20
20
| <a name =" module_ecr " ></a > [ ecr] ( #module\_ ecr ) | cloudposse/ecr/aws | 0.34.0 |
21
21
| <a name =" module_efs " ></a > [ efs] ( #module\_ efs ) | cloudposse/efs/aws | 0.32.7 |
22
22
| <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" {
105
105
# CodePipeline/CodeBuild to build Jenkins Docker image, store it to a ECR repo, and deploy it to Elastic Beanstalk running Docker stack
106
106
module "cicd" {
107
107
source = " cloudposse/cicd/aws"
108
- version = " 0.12.0 "
108
+ version = " 0.19.1 "
109
109
attributes = [" cicd" ]
110
110
elastic_beanstalk_application_name = module. elastic_beanstalk_application . elastic_beanstalk_application_name
111
111
elastic_beanstalk_environment_name = module. elastic_beanstalk_environment . name
@@ -206,6 +206,7 @@ resource "aws_iam_policy" "slaves" {
206
206
path = " /"
207
207
description = " Policy for EC2 instance profile to allow launching Jenkins slaves"
208
208
policy = data. aws_iam_policy_document . slaves . json
209
+ tags = module. label_slaves . tags
209
210
}
210
211
211
212
# 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) {
90
90
// Run `terraform output` to get the value of an output variable
91
91
codebuildProjectName := terraform .Output (t , terraformOptions , "codebuild_project_name" )
92
92
// 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 )
94
94
95
95
// Run `terraform output` to get the value of an output variable
96
96
codebuildCacheBucketName := terraform .Output (t , terraformOptions , "codebuild_cache_bucket_name" )
97
97
// 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 " )
99
99
100
100
// Run `terraform output` to get the value of an output variable
101
101
codepipelineId := terraform .Output (t , terraformOptions , "codepipeline_id" )
You can’t perform that action at this time.
0 commit comments