codepipeline - fixes

This commit is contained in:
Edward Viaene
2020-02-27 18:09:36 +01:00
parent a939c15fb4
commit 520dd3ef53
4 changed files with 10 additions and 7 deletions
+6 -4
View File
@@ -10,10 +10,10 @@ resource "aws_codebuild_project" "demo" {
type = "CODEPIPELINE"
}
cache {
type = "S3"
location = aws_s3_bucket.codebuild-cache.bucket
}
#cache {
# type = "S3"
# location = aws_s3_bucket.codebuild-cache.bucket
#}
environment {
compute_type = "BUILD_GENERAL1_SMALL"
@@ -39,5 +39,7 @@ resource "aws_codebuild_project" "demo" {
type = "CODEPIPELINE"
buildspec = "buildspec.yml"
}
#depends_on = [aws_s3_bucket.codebuild-cache]
}