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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,8 +82,8 @@ The following inputs can be used as `steps.with` keys:
82
82
| `st2_auth_password` | string | | Password used by StackStorm standalone authentication. Set as a secret in GH Actions. |
83
83
| `st2_packs` | string |`"st2"` | Comma separated list of packs to install. If you modify this option, be sure to also include `st2` in the list. |
84
84
| **Cleanup** |
85
-
| `stack_destroy` | bool | `false` | Set to `true` to Destroy the created AWS infrastructure for this instance |
86
-
| `tf_state_bucket_destroy` | bool | `false` | Force purge and deletion of `tf_state_bucket` defined. Any file contained there will be destroyed. `stack_destroy` must also be `true`. Use if you want to clean up the resources |
85
+
| `tf_stack_destroy` | bool | `false` | Set to `true` to Destroy the created AWS infrastructure for this instance |
86
+
| `tf_state_bucket_destroy` | bool | `false` | Force purge and deletion of `tf_state_bucket` defined. Any file contained there will be destroyed. `tf_stack_destroy` must also be `true`. Use if you want to clean up the resources |
Copy file name to clipboardExpand all lines: action.yaml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,16 +25,16 @@ inputs:
25
25
description: 'AWS S3 bucket to use for Terraform state. Defaults to `${org}-${repo}-{branch}-tf-state`'
26
26
required: false
27
27
tf_state_bucket_destroy:
28
-
description: 'Force purge and deletion of S3 bucket defined. Any file contained there will be destroyed `stack_destroy` must also be `true`'
28
+
description: 'Force purge and deletion of S3 bucket defined. Any file contained there will be destroyed `tf_stack_destroy` must also be `true`'
29
29
required: false
30
30
default: 'false'
31
31
aws_ec2_instance_profile:
32
32
description: 'The AWS IAM instance profile to use for the EC2 instance. Use if you want to pass an AWS role with specific permissions granted to the instance'
33
33
aws_ec2_instance_type:
34
34
description: 'The AWS EC2 instance type'
35
35
default: t2.medium
36
-
stack_destroy:
37
-
description: 'Set to "true" to Destroy the stack'
36
+
tf_stack_destroy:
37
+
description: 'Set to "true" to Destroy the created AWS infrastructure for this instance'
38
38
aws_resource_identifier:
39
39
description: 'Set to override the AWS resource identifier for the deployment. Defaults to `${org}-{repo}-{branch}`. Use with destroy to destroy specific resources.'
0 commit comments