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
__NOTE:__ The operators of the module (IAM Users) must have permissions to create S3 buckets and DynamoDB tables when performing `terraform plan` and `terraform apply`
22
22
23
+
__NOTE:__ This module cannot be used to apply changes to the `mfa_delete` feature of the bucket. Changes regarding mfa_delete can only be made manually using the root credentials with MFA of the AWS Account where the bucket resides. Please see: https://github.com/terraform-providers/terraform-provider-aws/issues/62
24
+
23
25
24
26
---
25
27
@@ -95,8 +97,9 @@ and the DynamoDB table will be used to lock the state to prevent concurrent modi
95
97
```
96
98
Available targets:
97
99
98
-
help This help screen
100
+
help Help screen
99
101
help/all Display help for all targets
102
+
help/short This help short screen
100
103
lint Lint terraform code
101
104
102
105
```
@@ -110,6 +113,7 @@ Available targets:
110
113
| delimiter | Delimiter to be used between `namespace`, `stage`, `name`, and `attributes`| string |`-`| no |
| force_destroy | A boolean that indicates the S3 bucket can be destroyed even if it contains objects. These objects are not recoverable | string |`false`| no |
116
+
| mfa_delete | A boolean that indicates that versions of S3 objects can only be deleted with MFA. ( Terraform cannot apply changes of this value; https://github.com/terraform-providers/terraform-provider-aws/issues/629 ) | string |`false`| no |
113
117
| name | Name (e.g. `app` or `cluster`) | string |`terraform`| no |
|[![Andriy Knysh][aknysh_avatar]][aknysh_homepage]<br/>[Andriy Knysh][aknysh_homepage]|[![Erik Osterman][osterman_avatar]][osterman_homepage]<br/>[Erik Osterman][osterman_homepage]|[![Maarten van der Hoef][maartenvanderhoef_avatar]][maartenvanderhoef_homepage]<br/>[Maarten van der Hoef][maartenvanderhoef_homepage]|
Copy file name to clipboardExpand all lines: README.yaml
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,8 @@ description: |-
53
53
54
54
__NOTE:__ The operators of the module (IAM Users) must have permissions to create S3 buckets and DynamoDB tables when performing `terraform plan` and `terraform apply`
55
55
56
+
__NOTE:__ This module cannot be used to apply changes to the `mfa_delete` feature of the bucket. Changes regarding mfa_delete can only be made manually using the root credentials with MFA of the AWS Account where the bucket resides. Please see: https://github.com/terraform-providers/terraform-provider-aws/issues/62
| force_destroy | A boolean that indicates the S3 bucket can be destroyed even if it contains objects. These objects are not recoverable | string |`false`| no |
11
+
| mfa_delete | A boolean that indicates that versions of S3 objects can only be deleted with MFA. ( Terraform cannot apply changes of this value; https://github.com/terraform-providers/terraform-provider-aws/issues/629 ) | string |`false`| no |
11
12
| name | Name (e.g. `app` or `cluster`) | string |`terraform`| no |
Copy file name to clipboardExpand all lines: variables.tf
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,11 @@ variable "force_destroy" {
58
58
default="false"
59
59
}
60
60
61
+
variable"mfa_delete" {
62
+
description="A boolean that indicates that versions of S3 objects can only be deleted with MFA. ( Terraform cannot apply changes of this value; https://github.com/terraform-providers/terraform-provider-aws/issues/629 )"
0 commit comments