├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── LICENSE ├── README.md ├── ec2ic └── dialer.go ├── go.mod ├── go.sum ├── main.go └── proxy.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dist/ 3 | -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/README.md -------------------------------------------------------------------------------- /ec2ic/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/ec2ic/dialer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/main.go -------------------------------------------------------------------------------- /proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidansteele/rdsconn/HEAD/proxy.go --------------------------------------------------------------------------------