2018-10-09 17:00:01 -04:00
|
|
|
// +build ignore
|
|
|
|
|
2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-10-09 17:00:01 -04:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-03-20 18:00:44 -04:00
|
|
|
"context"
|
2018-10-09 17:00:01 -04:00
|
|
|
"log"
|
|
|
|
|
2020-04-14 14:28:56 -04:00
|
|
|
"github.com/minio/minio/pkg/bucket/policy"
|
|
|
|
"github.com/minio/minio/pkg/bucket/policy/condition"
|
|
|
|
iampolicy "github.com/minio/minio/pkg/iam/policy"
|
2018-10-09 17:00:01 -04:00
|
|
|
"github.com/minio/minio/pkg/madmin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are
|
|
|
|
// dummy values, please replace them with original values.
|
|
|
|
|
|
|
|
// Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY are
|
|
|
|
// dummy values, please replace them with original values.
|
|
|
|
|
2019-08-28 13:56:02 -04:00
|
|
|
// API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise.
|
2019-04-09 14:39:42 -04:00
|
|
|
// New returns an MinIO Admin client object.
|
2018-10-09 17:00:01 -04:00
|
|
|
madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
|
2020-03-20 18:00:44 -04:00
|
|
|
if err = madmClnt.AddUser(context.Background(), "newuser", "newstrongpassword"); err != nil {
|
2018-10-09 17:00:01 -04:00
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create policy
|
2020-04-14 14:28:56 -04:00
|
|
|
p := iampolicy.Policy{
|
|
|
|
Version: iampolicy.DefaultVersion,
|
|
|
|
Statements: []iampolicy.Statement{
|
|
|
|
iampolicy.NewStatement(
|
|
|
|
policy.Allow,
|
|
|
|
iampolicy.NewActionSet(iampolicy.GetObjectAction),
|
|
|
|
iampolicy.NewResourceSet(iampolicy.NewResource("testbucket/*", "")),
|
|
|
|
condition.NewFunctions(),
|
|
|
|
)},
|
|
|
|
}
|
2018-10-09 17:00:01 -04:00
|
|
|
|
2020-04-14 14:28:56 -04:00
|
|
|
if err = madmClnt.AddCannedPolicy(context.Background(), "get-only", &p); err != nil {
|
2018-10-16 15:48:19 -04:00
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
|
2020-03-20 18:00:44 -04:00
|
|
|
if err = madmClnt.SetUserPolicy(context.Background(), "newuser", "get-only"); err != nil {
|
2018-10-09 17:00:01 -04:00
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
}
|