You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support extra attributes on minio_iam_service_account
In mc/mcli binary there's some extra options over the svcacct command like the following
FLAGS:
--access-key value set an access key for the service account
--secret-key value set a secret key for the service account
--policy value path to a JSON policy file
--name value friendly name for the service account
--description value description for the service account
--expiry value time of expiration for the service account
--config-dir value, -C value path to configuration folder (default: "/home/caiodelgado/.mcli") [$MC_CONFIG_DIR]
--quiet, -q disable progress bar display [$MC_QUIET]
--disable-pager, --dp disable mc internal pager and print to raw stdout [$MC_DISABLE_PAGER]
--no-color disable color theme [$MC_NO_COLOR]
--json enable JSON lines formatted output [$MC_JSON]
--debug enable debug output [$MC_DEBUG]
--resolve value resolves HOST[:PORT] to an IP address. Example: minio.local:9000=10.10.75.1 [$MC_RESOLVE]
--insecure disable SSL certificate verification [$MC_INSECURE]
--limit-upload value limits uploads to a maximum rate in KiB/s, MiB/s, GiB/s. (default: unlimited) [$MC_LIMIT_UPLOAD]
--limit-download value limits downloads to a maximum rate in KiB/s, MiB/s, GiB/s. (default: unlimited) [$MC_LIMIT_DOWNLOAD]
I would like to be able to set the access_key, name and description of the service account.
Example
resource"minio_iam_service_account""sa_user" {
target_user="minio-user"access_key="minio-user-prod"name="Minio User"description="User account for minio prod, used by app XPTO"
}
Reference mcli command
$ mcli admin user svcacct add md minio-user --access-key minio-prod --name "Minio User" --description "User account for minio prod, used by app XPTO"
Access Key: minio-prod
Secret Key: qqwWabcdEzyuXXSZJIabcdNMRP6jsHbv57abcdxN0
Expiration: no-expiry
Not sure if this would be hard to implement, but it would be very nice to have this possibility of configuration.
The text was updated successfully, but these errors were encountered:
It would be more usefull if it also create more than one additional access-keys including access key value itself as optional, expiry, name, description and comments.
Support extra attributes on
minio_iam_service_account
In mc/mcli binary there's some extra options over the svcacct command like the following
I would like to be able to set the access_key, name and description of the service account.
Example
Reference mcli command
Not sure if this would be hard to implement, but it would be very nice to have this possibility of configuration.
The text was updated successfully, but these errors were encountered: