Skip to content

Commit 864f91a

Browse files
committed
Turn off bucket versioning and encryption in simple example
1 parent a675433 commit 864f91a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

examples/simple/main.tf

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,12 @@ module "materialize_infrastructure" {
2929
enable_cluster_creator_admin_permissions = true
3030

3131
# Storage Configuration
32-
enable_bucket_versioning = true
33-
enable_bucket_encryption = true
34-
bucket_force_destroy = true
32+
bucket_force_destroy = true
33+
34+
# For testing purposes, we are disabling encryption and versioning to allow for easier cleanup
35+
# This should be enabled in production environments for security and data integrity
36+
enable_bucket_versioning = false
37+
enable_bucket_encryption = false
3538

3639
# Database Configuration
3740
database_password = var.database_password

0 commit comments

Comments
 (0)