I write an API in go which can create organisation which have default policies rules.
I want to use an external config YAML file to include some policies in my API (I actually put the policies inside my code in the function which creates my entity organisation) :
policy.yml
- role: "admin"
organisationid: organisation.ID
policies:
[{Object: "/*", Action: "*"}]
- role: "user"
organisationid: organisation.ID
policies:
[{Object: "/me", Action: "GET"},
{Object: "/organisations", Action: "GET"},
{Object: "/acl/roles", Action: "GET"}]
I extract it using go-yaml lib and the expected output should be :
[{admin organisation.ID [{/* *}]} {user organisation.ID [{/me GET} {/organisations GET} {/acl/roles GET}]}]
But when I extract it in a struct like :
// OrganisationRole ...
type OrganisationRoleNoPolicy struct {
Role string `json:"role"`
OrganisationID string `json:"organisation"`
Policies []map[string]string `json:"policies"`
}
func extractYaml() (config []OrganisationRoleNoPolicy) {
filename := "policy.yml"
source, err := ioutil.ReadFile(filename)
if err != nil {
panic(err)
}
err = yaml.Unmarshal(source, &config)
if err != nil {
log.Fatalf("error: %v", err)
}
fmt.Printf("--- config:
%v
", config)
return
}
I get this :
[{admin organisation.ID [map[Object:/* Action:*]]} {user organisation.ID [map[Object:/me Action:GET] map[Object:/organisations Action:GET] map[Object:/acl/roles Action:GET]]}]
Maybe I don't get well how to use or properly write YAML, so guys could you help me understanding how to map it to obtain the output expected.