control minio token access ========================== To allow access only to the , you can pass add the Resource field to the User Policy when you create a new token. Date: April 24, 2024 To allow access only to the , you can pass add the Resource field to the User Policy when you create a new token. ``` json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "admin:*" ] }, { "Effect": "Allow", "Action": [ "kms:*" ] }, { "Effect": "Allow", "Action": [ "s3:*" ], "Resource": [ "arn:aws:s3:::", "arn:aws:s3:::/*" ] } ] } ```