You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25-6Lines changed: 25 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,33 @@ The actions are versioned as a suite. Some actions may have no change in behavio
8
8
9
9
When using an action you can specify the version as:
10
10
11
-
-`@v1.17.3` to use an exact release
12
-
-`@v1.17` to use the latest patch release for the specific minor version
11
+
-`@v1.18.0` to use an exact release
12
+
-`@v1.18` to use the latest patch release for the specific minor version
13
13
-`@v1` to use the latest patch release for the specific major version
14
14
15
-
## [1.17.3] - 2021-10-29
15
+
## [1.18.0] - 2021-10-30
16
16
17
-
### Fixed
18
-
- Compatability with Terraform v1.0.10 - Thanks [kylewlacy](https://github.com/kylewlacy)!
19
-
- Now makes even fewer github api requests to avoid rate limiting.
17
+
### Added
18
+
- 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)
19
+
20
+
This instructs terraform to replace the specified resources, and is available with terraform versions that support replace (v0.15.2 onwards).
21
+
22
+
```yaml
23
+
with:
24
+
replace: |
25
+
random_password.database
26
+
```
27
+
28
+
- 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)
29
+
30
+
`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`.
31
+
32
+
```yaml
33
+
with:
34
+
target: |
35
+
kubernetes_secret.tls_cert_public
36
+
kubernetes_secret.tls_cert_private
37
+
```
20
38
21
39
## [1.17.2] - 2021-10-13
22
40
@@ -271,6 +289,7 @@ First release of the GitHub Actions:
0 commit comments