Skip to content

Commit

Permalink
Merge pull request #3 from lgallard/fix/default-artifacts-type
Browse files Browse the repository at this point in the history
Fix/default artifacts type
  • Loading branch information
lgallard authored May 28, 2020
2 parents 315fadc + c865fc3 commit 66bd66a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.0 (May 28, 2020)

FIXES:

* Change default artifacts type to `CODEPIPELINE`

## 0.1.1 (April 17, 2020)

UPDATES:
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,12 @@ module "myapp-project" {
}
```

## Providers

| Name | Version |
|------|---------|
| aws | n/a |

## Inputs

| Name | Description | Type | Default | Required |
Expand All @@ -150,7 +156,7 @@ module "myapp-project" {
| artifacts\_override\_artifact\_name | If set to true, a name specified in the build spec file overrides the artifact name. | `bool` | `false` | no |
| artifacts\_packaging | The type of build output artifact to create. If `type` is set to `S3`, valid values for this parameter are: `NONE` or `ZIP` | `string` | n/a | yes |
| artifacts\_path | If `type` is set to `S3`, this is the path to the output artifact | `string` | `""` | no |
| artifacts\_type | The build output artifact's type. Valid values for this parameter are: `CODEPIPELINE`, `NO_ARTIFACTS` or `S3`. | `string` | `"NO_ARTIFACTS"` | no |
| artifacts\_type | The build output artifact's type. Valid values for this parameter are: `CODEPIPELINE`, `NO_ARTIFACTS` or `S3`. | `string` | `"CODEPIPELINE"` | no |
| badge\_enabled | Generates a publicly-accessible URL for the projects build badge. Available as badge\_url attribute when enabled. | `bool` | `false` | no |
| build\_timeout | How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed.The default is 60 minutes. | `number` | `60` | no |
| cache | Information about the cache storage for the project. | `any` | `{}` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ variable "artifacts" {
variable "artifacts_type" {
description = "The build output artifact's type. Valid values for this parameter are: `CODEPIPELINE`, `NO_ARTIFACTS` or `S3`."
type = string
default = "NO_ARTIFACTS"
default = "CODEPIPELINE"
}

variable "artifacts_artifact_identifier" {
Expand Down

0 comments on commit 66bd66a

Please sign in to comment.