2020-03-17 13:36:13 -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/>.
|
2020-03-17 13:36:13 -04:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-03-20 18:00:44 -04:00
|
|
|
"context"
|
2020-03-17 13:36:13 -04:00
|
|
|
"fmt"
|
|
|
|
"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"
|
2020-03-17 13:36:13 -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.
|
|
|
|
|
|
|
|
// API requests are secure (HTTPS) if secure=true and insecure (HTTP) otherwise.
|
|
|
|
// New returns an MinIO Admin client object.
|
|
|
|
madmClnt, err := madmin.New("your-minio.example.com:9000", "YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", true)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:28:56 -04:00
|
|
|
p := iampolicy.Policy{
|
|
|
|
Version: iampolicy.DefaultVersion,
|
2020-04-24 15:10:09 -04:00
|
|
|
Statements: []iampolicy.Statement{
|
2020-04-14 14:28:56 -04:00
|
|
|
iampolicy.NewStatement(
|
|
|
|
policy.Allow,
|
|
|
|
iampolicy.NewActionSet(iampolicy.GetObjectAction),
|
|
|
|
iampolicy.NewResourceSet(iampolicy.NewResource("testbucket/*", "")),
|
|
|
|
condition.NewFunctions(),
|
|
|
|
)},
|
|
|
|
}
|
2020-03-17 13:36:13 -04:00
|
|
|
|
2020-04-24 15:10:09 -04:00
|
|
|
// Create a new service account
|
2021-04-15 01:51:14 -04:00
|
|
|
creds, err := madmClnt.AddServiceAccount(context.Background(), madmin.AddServiceAccountReq{Policy: &p})
|
2020-03-17 13:36:13 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
fmt.Println(creds)
|
2020-04-24 15:10:09 -04:00
|
|
|
|
|
|
|
// List all services accounts
|
2021-04-15 01:51:14 -04:00
|
|
|
list, err := madmClnt.ListServiceAccounts(context.Background(), "")
|
2020-04-24 15:10:09 -04:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
fmt.Println(list)
|
|
|
|
|
|
|
|
// Delete a service account
|
|
|
|
err = madmClnt.DeleteServiceAccount(context.Background(), list.Accounts[0])
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
2020-03-17 13:36:13 -04:00
|
|
|
}
|