Skip to content

Commit 7284ad7

Browse files
authored
mfa_delete removed due to issue in terraform (#79)
1 parent 24cdea3 commit 7284ad7

File tree

8 files changed

+2
-21
lines changed

8 files changed

+2
-21
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ Available targets:
188188
| label\_order | The naming order of the id output and Name tag.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 5 elements, but at least one must be present. | `list(string)` | `null` | no |
189189
| local\_cache\_modes | Specifies settings that AWS CodeBuild uses to store and reuse build dependencies. Valid values: LOCAL\_SOURCE\_CACHE, LOCAL\_DOCKER\_LAYER\_CACHE, and LOCAL\_CUSTOM\_CACHE | `list(string)` | `[]` | no |
190190
| logs\_config | Configuration for the builds to store log data to CloudWatch or S3. | `any` | `{}` | no |
191-
| 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 ) | `bool` | `true` | no |
192191
| name | Solution name, e.g. 'app' or 'jenkins' | `string` | `null` | no |
193192
| namespace | Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp' | `string` | `null` | no |
194193
| private\_repository | Set to true to login into private repository with credentials supplied in source\_credential variable. | `bool` | `false` | no |

docs/terraform.md

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
| label\_order | The naming order of the id output and Name tag.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 5 elements, but at least one must be present. | `list(string)` | `null` | no |
5151
| local\_cache\_modes | Specifies settings that AWS CodeBuild uses to store and reuse build dependencies. Valid values: LOCAL\_SOURCE\_CACHE, LOCAL\_DOCKER\_LAYER\_CACHE, and LOCAL\_CUSTOM\_CACHE | `list(string)` | `[]` | no |
5252
| logs\_config | Configuration for the builds to store log data to CloudWatch or S3. | `any` | `{}` | no |
53-
| 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 ) | `bool` | `true` | no |
5453
| name | Solution name, e.g. 'app' or 'jenkins' | `string` | `null` | no |
5554
| namespace | Namespace, which could be your organization name or abbreviation, e.g. 'eg' or 'cp' | `string` | `null` | no |
5655
| private\_repository | Set to true to login into private repository with credentials supplied in source\_credential variable. | `bool` | `false` | no |

examples/bitbucket/build.tf

-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,4 @@ module "build" {
5252
attributes = var.attributes
5353
tags = var.tags
5454

55-
56-
57-
5855
}

examples/complete/fixtures.us-west-1.tfvars

-2
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ environment_variables = [
2727
cache_expiration_days = 7
2828

2929
cache_type = "S3"
30-
31-
mfa_delete = false

examples/complete/main.tf

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ module "codebuild" {
88
environment_variables = var.environment_variables
99
cache_expiration_days = var.cache_expiration_days
1010
cache_type = var.cache_type
11-
mfa_delete = var.mfa_delete
1211

1312
context = module.this.context
1413
}

examples/complete/variables.tf

-5
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,3 @@ variable "cache_type" {
3333
type = string
3434
description = "The type of storage that will be used for the AWS CodeBuild project cache. Valid values: NO_CACHE, LOCAL, and S3. Defaults to NO_CACHE. If cache_type is S3, it will create an S3 bucket for storing codebuild cache inside"
3535
}
36-
37-
variable "mfa_delete" {
38-
type = bool
39-
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 )"
40-
}

main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ data "aws_region" "default" {
77
resource "aws_s3_bucket" "cache_bucket" {
88
#bridgecrew:skip=BC_AWS_S3_13:Skipping `Enable S3 Bucket Logging` check until bridgecrew will support dynamic blocks (https://github.com/bridgecrewio/checkov/issues/776).
99
#bridgecrew:skip=BC_AWS_S3_14:Skipping `Ensure all data stored in the S3 bucket is securely encrypted at rest` check until bridgecrew will support dynamic blocks (https://github.com/bridgecrewio/checkov/issues/776).
10+
#bridgecrew:skip=CKV_AWS_52:Skipping `Ensure S3 bucket has MFA delete enabled` due to issue in terraform (https://github.com/hashicorp/terraform-provider-aws/issues/629).
1011
count = module.this.enabled && local.s3_cache_enabled ? 1 : 0
1112
bucket = local.cache_bucket_name_normalised
1213
acl = "private"
1314
force_destroy = true
1415
tags = module.this.tags
1516

1617
versioning {
17-
enabled = var.versioning_enabled
18-
mfa_delete = var.mfa_delete
18+
enabled = var.versioning_enabled
1919
}
2020

2121
dynamic "logging" {

variables.tf

-6
Original file line numberDiff line numberDiff line change
@@ -216,12 +216,6 @@ variable "versioning_enabled" {
216216
description = "A state of versioning. Versioning is a means of keeping multiple variants of an object in the same bucket"
217217
}
218218

219-
variable "mfa_delete" {
220-
type = bool
221-
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 )"
222-
default = true
223-
}
224-
225219
variable "access_log_bucket_name" {
226220
type = string
227221
default = ""

0 commit comments

Comments
 (0)