We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a675433 commit 864f91aCopy full SHA for 864f91a
examples/simple/main.tf
@@ -29,9 +29,12 @@ module "materialize_infrastructure" {
29
enable_cluster_creator_admin_permissions = true
30
31
# Storage Configuration
32
- enable_bucket_versioning = true
33
- enable_bucket_encryption = true
34
- bucket_force_destroy = true
+ bucket_force_destroy = true
+
+ # 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
38
39
# Database Configuration
40
database_password = var.database_password
0 commit comments