Skip to content

chore(deps): update terraform minio to v3

This MR contains the following updates:

Package Type Update Change
minio (source) required_provider major 1.5.2 -> 3.11.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

aminueza/terraform-provider-minio (minio)

v3.11.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.10.0...v3.11.0

v3.10.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.9.0...v3.10.0

v3.9.0

Compare Source

What's Changed

  • Implement secret_key field for minio_accesskey resource as write-only to prevent credentials from being persisted in Terraform state by @​felladrin in #​673

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.8.3...v3.9.0

v3.8.3

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.8.2...v3.8.3

v3.8.2

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.8.1...v3.8.2

v3.8.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.8.0...v3.8.1

v3.8.0

Compare Source

What's Changed

  • Fix error on ILM tier GCS update and add gcs_config presence guards by @​felladrin in #​667
  • Gracefully handle non-existent bucket scenarios in notification operations by @​felladrin in #​664
  • Remove restrictive principal validation and add NotPrincipal support to minio_iam_policy_document by @​felladrin in #​662

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.7.0...v3.8.0

v3.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.6.5...v3.7.0

v3.6.5

Compare Source

What's Changed

  • Add bucket existence check to avoid issues when a bucket gets deleted manually by @​felladrin in #​661

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.6.4...v3.6.5

v3.6.4

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.6.3...v3.6.4

v3.6.3

Compare Source

What's Changed

  • Prevent perpetual diffs by ignoring implied policies in MinIO access keys by @​felladrin in #​654

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.6.2...v3.6.3

v3.6.2

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.6.1...v3.6.2

v3.6.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.6.0...v3.6.1

v3.6.0

Compare Source

What's Changed

  • Add policy argument to minio_accesskey resource for direct policy attachment by @​Arash-81 in #​647

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.5.4...v3.6.0

v3.5.4

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.5.3...v3.5.4

v3.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.5.2...v3.5.3

v3.5.2

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.5.1...v3.5.2

v3.5.1

Compare Source

⚠️ Renamed attribute in minio_s3_bucket_replication

The misspelled attribute bandwidth_limt has been renamed to the correct spelling bandwidth_limit by @​s-vitaliy in #​632

If you currently use the bandwidth_limt attribute in your configuration, you must update your Terraform configuration to use bandwidth_limit instead. The provider will automatically migrate the state when you apply changes to the minio_s3_bucket_replication resource. Note that downgrading to a previous version after this migration is not supported.

Users who don't use this attribute in their configuration will not be affected by this change.

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.5.0...v3.5.1

v3.5.0

Compare Source

What's Changed

  • Improve IAM policy comparison to prevent unnecessary updates for equivalent policies by @​felladrin in #​628

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.4.0...v3.5.0

v3.4.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.3.0...v3.4.0

v3.3.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.2.4...v3.3.0

v3.2.4

Compare Source

v3.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.2.2...v3.2.3

v3.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.2.1...v3.2.2

v3.2.1

Compare Source

What's Changed

  • Preserve custom policy when changing name or description of a service account by @​ribetm in #​597

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.2.0...v3.2.1

v3.2.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.1.0...v3.2.0

v3.1.0

Compare Source

What's Changed

  • Add name, description and expiration support for service accounts by @​ribetm in #​594

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v3.0.0...v3.1.0

v3.0.0

Compare Source

What's Changed

New Contributors

Guide for upgrading from v2 to v3

Breaking Changes in ILM Policy Resource

The MinIO ILM (Information Lifecycle Management) policy resource has been significantly improved with better validation and structure. The following changes require attention when upgrading:

1. Noncurrent Version Expiration Changes
  • Old: noncurrent_version_expiration_days = 5
  • New:
    noncurrent_expiration {
      days = "5d"
    }
  • Note: Days format now requires a "d" suffix.
2. Noncurrent Version Transition Changes
  • Old: noncurrent_version_transition_days = 5
  • New:
    noncurrent_transition {
      days           = "5d"
      storage_class  = "TIER_NAME"
      newer_versions = 3  # Optional
    }
3. Days Format Changes
  • All day-based fields now require the "Nd" format (e.g., "30d" instead of 30).
  • This affects:
    • transition.days
    • noncurrent_transition.days
    • noncurrent_expiration.days
4. Date Format Standardization
  • All date fields must now use the YYYY-MM-DD format.
  • Affected fields:
    • transition.date
Upgrade Steps
  1. Search your codebase for minio_ilm_policy resources.
  2. Update any noncurrent version configurations to use the new block syntax.
  3. Add a "d" suffix to all day-based values.
  4. Verify date formats are in the YYYY-MM-DD format.
  5. Run terraform plan to verify changes.
Example of Updated Configuration
Before:
resource "minio_ilm_policy" "example" {
  bucket = "mybucket"
  rule {
    id = "rule1"
    noncurrent_version_expiration_days = 5
  }
}
After:
resource "minio_ilm_policy" "example" {
  bucket = "mybucket"
  rule {
    id = "rule1"
    noncurrent_expiration {
      days = "5d"
    }
  }
}

These changes improve validation and make the configuration more consistent. While they require updates to existing configurations, they provide better error messages and prevent invalid configurations.

For assistance, please refer to the updated documentation or open an issue.

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.5.1...v3.0.0

v2.5.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.5.0...v2.5.1

v2.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.4.3...v2.5.0

v2.4.3

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.4.2...v2.4.3

v2.4.2

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.4.1...v2.4.2

v2.4.1

Compare Source

What's Changed

  • Fix GCS ilm tier region using prefix string instead of region string by @​maxalves in #​575

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.4.0...v2.4.1

v2.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.3.2...v2.4.0

v2.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.3.1...v2.3.2

v2.3.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.3.0...v2.3.1

v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.2.1...v2.3.0

v2.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.2.0...v2.2.1

v2.2.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.1.0...v2.2.0

v2.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.0.1...v2.1.0

v2.0.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v2.0.0...v2.0.1

v2.0.0

Compare Source

What's Changed

Breaking Change: About the major version update

We've updated madmin-go to v3 so we can use the new features from the SDK, like the bucket replication. As a consequence of this, we had to change our License to AGPL-3.0 to comply with madmin-go, which has been using AGPL-3.0 since its v2 release.

For those who can't upgrade to terraform-provider-minio v2 due to license incompatibilities, we recommend you keep using the v1 until you feel you need some of the new features.

To don't let anyone behind, we've created a v1 branch, which is now protected and will live along with the main. So if users of v1 want to push features/fixes, they can create pull requests targeting that branch, and as soon as it's merged, we release a new update for the v1.x.

For those importing this package in their software and want to upgrade, here's the command to upgrade:

go get github.com/aminueza/terraform-provider-minio/v2@​v2.0.0

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.18.0...v2.0.0

Note v1 branch diverged from main at after the release v1.18.0.

v1.20.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.20.0...v1.20.1

Note v1 of the provider is now under maintenance mode. If you can, it's advised to upgrade to v2.

v1.20.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.18.0...v1.20.0

Note This release replaces v1.18.1 and v1.18.2, which are unavailable on https://registry.terraform.io/providers/aminueza/minio as they were built with an outdated GPG key. It also replaces v1.18.3 and v1.19.0, which couldn't be installed due the issue #​531.

v1.19.0

Compare Source

Changes on this Release:

  • Update crazy-max/ghaction-import-gpg action to v6 (#​516)
  • Handle empty service account policy (#​518)
  • Update repository URL (#​520)
  • Destroy object versions on bucket force_destroy (#​524)
  • Add Noncurrent Version expiration to ilm policy (#​526)

Full Changelog: https://github.com/terraform-provider-minio/terraform-provider-minio/compare/v1.18.0...v1.19.0

Note This release replaces v1.18.1 and v1.18.2, which are unavailable on https://registry.terraform.io/providers/aminueza/minio as they were built with an outdated GPG key. It also replaces v1.18.3, which couldn't be installed due the issue #​531.

v1.18.3

Compare Source

Changes on this Release:

Full Changelog: https://github.com/terraform-provider-minio/terraform-provider-minio/compare/v1.18.0...v1.18.3

Note This release replaces v1.18.1 and v1.18.2, which are unavailable on https://registry.terraform.io/providers/aminueza/minio as they were built with an outdated GPG key.

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.17.2...v1.18.0

v1.17.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.17.1...v1.17.2

v1.17.1

Compare Source

What's Changed

  • Fix minio_iam_user_policy_attachment error: Provider produced inconsistent result after apply by @​Adphi in #​495

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.17.0...v1.17.1

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.15.3...v1.16.0

v1.15.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.15.2...v1.15.3

v1.15.2

Compare Source

What's Changed

  • Avoid forcing replacement of the bucket when setting a value for object_locking by @​ktaf in #​460

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.15.1...v1.15.2

v1.15.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.15.0...v1.15.1

v1.15.0

Compare Source

What's Changed

  • Add support for object locking in minio_s3_bucket resource. by @​Eilyre in #​453

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.13.0...v1.14.0

v1.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.12.0...v1.13.0

v1.12.0

Compare Source

Maintenance Release

  • Dependency Upgrades
  • Fix problems around changing passwords (#​354 #​259)

v1.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.10.0...v1.11.0

v1.10.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.9.1...v1.10.0

v1.9.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.9.0...v1.9.1

v1.9.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.8.0...v1.9.0

v1.8.0

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.7.1...v1.8.0

v1.7.1

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.7.0...v1.7.1

v1.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.6.0...v1.7.0

v1.6.0

Compare Source

What's Changed

  • Now able to manage bucket quotas

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.5.3...v1.6.0

v1.5.3

Compare Source

What's Changed

Full Changelog: https://github.com/aminueza/terraform-provider-minio/compare/v1.5.2...v1.5.3


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by Renovate Bot

Merge request reports

Loading