├── .github └── workflows │ └── release.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── aws-whoami ├── .gitignore ├── main.go └── main_test.go ├── go.mod └── go.sum /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/README.md -------------------------------------------------------------------------------- /aws-whoami/.gitignore: -------------------------------------------------------------------------------- 1 | aws-whoami 2 | -------------------------------------------------------------------------------- /aws-whoami/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/aws-whoami/main.go -------------------------------------------------------------------------------- /aws-whoami/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/aws-whoami/main_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkehoe/aws-whoami-golang/HEAD/go.sum --------------------------------------------------------------------------------