├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── function ├── Makefile └── function.go └── main.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/README.md -------------------------------------------------------------------------------- /function/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/function/Makefile -------------------------------------------------------------------------------- /function/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/function/function.go -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankcash/go-lambda-ping/HEAD/main.tf --------------------------------------------------------------------------------