We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The maximum expiration date of service account (introduced in version 3.1.0, see #594) is not 365 days as indicated in the documentation but only approximately 6 days. This is due to a wrong conversion of number of minutes in a year on this line https://github.com/ribetm/terraform-provider-minio/blob/main/minio/resource_minio_service_account.go#L374 (365*24 is the number of hours in a year, not the number of minutes).
The text was updated successfully, but these errors were encountered:
Fix number of minutes in a year for service account expiration (aminu…
f16b37b
…eza#600)
Successfully merging a pull request may close this issue.
Description
The maximum expiration date of service account (introduced in version 3.1.0, see #594) is not 365 days as indicated in the documentation but only approximately 6 days. This is due to a wrong conversion of number of minutes in a year on this line https://github.com/ribetm/terraform-provider-minio/blob/main/minio/resource_minio_service_account.go#L374 (365*24 is the number of hours in a year, not the number of minutes).
The text was updated successfully, but these errors were encountered: