Skip to content

Commit

Permalink
patch: values should be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankatliarchuk committed Jun 7, 2020
1 parent 7a32dc0 commit e98cfba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
echo "::set-output name=changelog::$(git log -1 --pretty=format:"%s")"
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.17.2
uses: anothrNick/github-tag-action@1.22.0
id: tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ module jenkins {
| repository | Helm repository | `string` | n/a | yes |
| set | Value block with custom STRING values to be merged with the values yaml. | <pre>list(object({<br> name = string<br> value = string<br> }))</pre> | `null` | no |
| set\_sensitive | Value block with custom sensitive values to be merged with the values yaml that won't be exposed in the plan's diff. | <pre>list(object({<br> path = string<br> value = string<br> }))</pre> | `null` | no |
| values | Extra values | `list(string)` | n/a | yes |
| values | Extra values | `list(string)` | `[]` | no |

## Outputs

Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ variable "app" {
variable "values" {
description = "Extra values"
type = list(string)
default = []
}

variable "set" {
Expand Down

0 comments on commit e98cfba

Please sign in to comment.