Skip to content

Commit

Permalink
Turn off bucket versioning and encryption in simple example
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev committed Feb 5, 2025
1 parent a675433 commit 864f91a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ module "materialize_infrastructure" {
enable_cluster_creator_admin_permissions = true

# Storage Configuration
enable_bucket_versioning = true
enable_bucket_encryption = true
bucket_force_destroy = true
bucket_force_destroy = true

# For testing purposes, we are disabling encryption and versioning to allow for easier cleanup
# This should be enabled in production environments for security and data integrity
enable_bucket_versioning = false
enable_bucket_encryption = false

# Database Configuration
database_password = var.database_password
Expand Down

0 comments on commit 864f91a

Please sign in to comment.