Skip to content
/ iamgo Public

Parse/assemble AWS IAM policy documents and their various quirks

License

Notifications You must be signed in to change notification settings

liamg/iamgo

Repository files navigation

iamgo

iamgo is a Go package for parsing/assembling AWS IAM policy documents, as the official SDK does not seem to fully support this.

It handles the multiple possible types for various IAM elements and hides this complexity from the consumer.

Example

package main

import (
    "fmt"
    
    "github.com/liamg/iamgo"
)

func main() {

    rawJSON := []byte(`...`)

    doc, err := iamgo.Parse(rawJSON)
    if err != nil {
        panic(err)
    }
    fmt.Printf("Done: %#v\n", doc)
}

About

Parse/assemble AWS IAM policy documents and their various quirks

Resources

License

Stars

Watchers

Forks

Packages

No packages published