Terraform provider for managing MinIO S3 buckets and IAM Users.
GNU Affero General Public License v3.0
243
stars
73
forks
source link
Remove `force_destroy` check from user update to prevent unintended deletions #591
Closed
felladrin closed 3 weeks ago
The change ensures that:
force_destroy
only takes effect during actual deletion operationsUpdates to the user resource won't trigger unexpected deletions
The behavior matches standard Terraform patterns where
force_destroy
is only considered during resource destructionThis fixes the problem mentioned here while maintaining the intended functionality of
force_destroy
for actual deletion operations.