Terraform module to provision an AWS codepipeline CI/CD system. The module also creates the build itself and and the example sets a deployment up for a Fargate project. The module has been fully updated to work with Terraform 0.12 and Terraform Cloud.
It's 100% Open Source and licensed under the APACHE2.
Include this repository as a module in your existing Terraform code:
module "codepipeline" { source = "JamesWoolfenden/codepipeline/aws" version = "0.3.12" artifact_store = var.artifact_store common_tags = var.common_tags description = var.description name = var.name stages = var.stages }No requirements.
| Name | Version |
|---|---|
| aws | n/a |
| Name | Description | Type | Default | Required |
|---|---|---|---|---|
| artifact_store | Map to populate the artifact block | map(any) | n/a | yes |
| common_tags | Implements the common tags scheme | map(any) | n/a | yes |
| description | Description of build project | string | n/a | yes |
| name | n/a | string | n/a | yes |
| policypath | n/a | string | "" | no |
| role_arn | Optionally supply an existing role | string | "" | no |
| stages | This list describes each stage of the build | list(any) | n/a | yes |
| Name | Description |
|---|---|
| pipelinr | n/a |
Check out these related projects.
- terraform-aws-codebuild - Making a Build pipeline
Got a question?
File a GitHub issue.
Please use the issue tracker to report any bugs or file feature requests.
Copyright © 2019-2021 James Woolfenden
See LICENSE for full details.
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
