Skip to content

Commit 1dbfe5b

Browse files
renovate[bot]cloudpossebotnitrocode
authored
chore(deps): update terraform cloudposse/cicd/aws to v0.19.1 (#65)
* chore(deps): update terraform cloudposse/cicd/aws to v0.19.1 * Auto Format * Update examples_complete_test.go * Update examples_complete_test.go * Update main.tf * Last one * Last one Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: cloudpossebot <[email protected]> Co-authored-by: nitrocode <[email protected]>
1 parent 774a1b8 commit 1dbfe5b

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 |

docs/terraform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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 |

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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
106106
module "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

test/src/examples_complete_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)