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
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,19 @@ 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.32.1` to use an exact release
12
-
-`@v1.32` to use the latest patch release for the specific minor version
11
+
-`@v1.33.0` to use an exact release
12
+
-`@v1.33` 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.33.0] - 2023-02-28
16
+
17
+
### Added
18
+
- The [dflook/terraform-plan](https://github.com/dflook/terraform-github-actions/tree/main/terraform-plan) and [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/tree/main/terraform-apply) actions now have a `destroy` input.
19
+
When set to `true` terraform will run in destroy mode, planning the destruction of all resources.
20
+
This allows reviewing the effect of a destroy before applying it.
21
+
22
+
The [dflook/terraform-destroy](https://github.com/dflook/terraform-github-actions/tree/main/terraform-destroy) action is unchanged and will still immediately destroy all resources.
23
+
15
24
## [1.32.1] - 2023-02-02
16
25
17
26
### Fixed
@@ -485,6 +494,7 @@ First release of the GitHub Actions:
Copy file name to clipboardExpand all lines: terraform-destroy/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,10 @@
2
2
3
3
This is one of a suite of terraform related actions - find them at [dflook/terraform-github-actions](https://github.com/dflook/terraform-github-actions).
4
4
5
-
This action uses the `terraform destroy` command to destroy all resources in a terraform workspace.
5
+
:warning:This action uses the `terraform destroy` command to immediately destroy all resources in a terraform workspace.
6
6
7
+
To generate a plan that can be reviewed you can instead use the [dflook/terraform-plan](https://github.com/dflook/terraform-github-actions/tree/main/terraform-plan)
8
+
and [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/tree/main/terraform-plan) actions with the `destroy` input set to `true`.
0 commit comments