Skip to content

Commit

Permalink
🔖 v1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Oct 30, 2021
1 parent ba4c541 commit 71821fa
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 9 deletions.
31 changes: 25 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,33 @@ The actions are versioned as a suite. Some actions may have no change in behavio

When using an action you can specify the version as:

- `@v1.17.3` to use an exact release
- `@v1.17` to use the latest patch release for the specific minor version
- `@v1.18.0` to use an exact release
- `@v1.18` to use the latest patch release for the specific minor version
- `@v1` to use the latest patch release for the specific major version

## [1.17.3] - 2021-10-29
## [1.18.0] - 2021-10-30

### Fixed
- Compatability with Terraform v1.0.10 - Thanks [kylewlacy](https://github.com/kylewlacy)!
- Now makes even fewer github api requests to avoid rate limiting.
### Added
- A new `replace` input for [dflook/terraform-plan](https://github.com/dflook/terraform-github-actions/tree/master/terraform-plan#inputs) and [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/tree/master/terraform-apply#inputs)

This instructs terraform to replace the specified resources, and is available with terraform versions that support replace (v0.15.2 onwards).

```yaml
with:
replace: |
random_password.database
```
- A `target` input for [dflook/terraform-plan](https://github.com/dflook/terraform-github-actions/tree/master/terraform-plan#inputs) to match [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/tree/master/terraform-apply#inputs)

`target` limits the plan to the specified resources and their dependencies. This change removes the restriction that `target` can only be used with `auto_approve`.

```yaml
with:
target: |
kubernetes_secret.tls_cert_public
kubernetes_secret.tls_cert_private
```

## [1.17.2] - 2021-10-13

Expand Down Expand Up @@ -271,6 +289,7 @@ First release of the GitHub Actions:
- [dflook/terraform-new-workspace](terraform-new-workspace)
- [dflook/terraform-destroy-workspace](terraform-destroy-workspace)

[1.18.0]: https://github.com/dflook/terraform-github-actions/compare/v1.17.3...v1.18.0
[1.17.3]: https://github.com/dflook/terraform-github-actions/compare/v1.17.2...v1.17.3
[1.17.2]: https://github.com/dflook/terraform-github-actions/compare/v1.17.1...v1.17.2
[1.17.1]: https://github.com/dflook/terraform-github-actions/compare/v1.17.0...v1.17.1
Expand Down
4 changes: 2 additions & 2 deletions terraform-apply/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ These input values must be the same as any `terraform-plan` for the same configu

* `replace`

List of resources to replace if any update to them is required.
List of resources to replace, one per line.

Only available with supported terraform versions (v0.15.2 onwards).
Only available with terraform versions that support replace (v0.15.2 onwards).

```yaml
with:
Expand Down
2 changes: 1 addition & 1 deletion terraform-plan/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/

* `replace`

List of resources to replace if any update to them is required, one per line.
List of resources to replace, one per line.

Only available with terraform versions that support replace (v0.15.2 onwards).

Expand Down

0 comments on commit 71821fa

Please sign in to comment.