Open
Description
module "ecs-codepipeline" {
source = "cloudposse/ecs-codepipeline/aws"
version = "0.23.1"
name = "hello-world"
namespace = "eg"
stage = "staging"
github_oauth_token = var.github_oauth_token
region = "eu-***-1"
image_repo_name = "hello-world"
//github_webhooks_token = "xxxxxxxxxxxxxx"
repo_owner = "someowner"
repo_name = "ecs-hello-world"
branch = "master"
service_name = "hello-world"
ecs_cluster_name = aws_ecs_cluster.lab-1.name
privileged_mode = "true"
}
Error: cache location is required when cache type is "S3"
on .terraform/modules/ecs-codepipeline.codebuild/main.tf line 206, in resource "aws_codebuild_project" "default":
206: resource "aws_codebuild_project" "default" {
*