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
+1
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,7 @@ You can find a more complete example that uses this module but also includes set
106
106
| <aname="input_enable_step_functions"></a> [enable\_step\_functions](#input\_enable\_step\_functions)| Provisions infrastructure for step functions if enabled |`bool`| n/a | yes |
107
107
| <aname="input_extra_ui_backend_env_vars"></a> [extra\_ui\_backend\_env\_vars](#input\_extra\_ui\_backend\_env\_vars)| Additional environment variables for UI backend container |`map(string)`|`{}`| no |
108
108
| <aname="input_extra_ui_static_env_vars"></a> [extra\_ui\_static\_env\_vars](#input\_extra\_ui\_static\_env\_vars)| Additional environment variables for UI static app |`map(string)`|`{}`| no |
109
+
| <aname="input_force_destroy_s3_bucket"></a> [force\_destroy\_s3\_bucket](#input\_force\_destroy\_s3\_bucket)| Empty S3 bucket before destroying via terraform destroy |`bool`|`false`| no |
109
110
| <aname="input_iam_partition"></a> [iam\_partition](#input\_iam\_partition)| IAM Partition (Select aws-us-gov for AWS GovCloud, otherwise leave as is) |`string`|`"aws"`| no |
110
111
| <aname="input_launch_template_http_endpoint"></a> [launch\_template\_http\_endpoint](#input\_launch\_template\_http\_endpoint)| Whether the metadata service is available. Can be 'enabled' or 'disabled' |`string`|`"enabled"`| no |
111
112
| <aname="input_launch_template_http_put_response_hop_limit"></a> [launch\_template\_http\_put\_response\_hop\_limit](#input\_launch\_template\_http\_put\_response\_hop\_limit)| The desired HTTP PUT response hop limit for instance metadata requests. Can be an integer from 1 to 64 |`number`|`2`| no |
Copy file name to clipboardExpand all lines: variables.tf
+6
Original file line number
Diff line number
Diff line change
@@ -170,3 +170,9 @@ variable "with_public_ip" {
170
170
type=bool
171
171
description="Enable public IP assignment for the Metadata Service. Typically you want this to be set to true if using public subnets as subnet1_id and subnet2_id, and false otherwise"
172
172
}
173
+
174
+
variable"force_destroy_s3_bucket" {
175
+
type=bool
176
+
description="Empty S3 bucket before destroying via terraform destroy"
0 commit comments