├── .envrc.example ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── documentation_issue.yaml │ ├── feature_request.yaml │ └── question.yaml ├── blunderbuss.yml ├── flakybot.yaml ├── header-checker-lint.yml ├── labels.yml ├── release-please.yml ├── renovate.json5 ├── trusted-contribution.yml └── workflows │ ├── codeql.yml │ ├── cover.yaml │ ├── docs.yml │ ├── govulncheck.yaml │ ├── labels.yaml │ ├── lint.yaml │ ├── sample-tests.yaml │ ├── scorecard.yml │ └── tests.yaml ├── .gitignore ├── .golangci.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.alpine ├── Dockerfile.bookworm ├── Dockerfile.bullseye ├── LICENSE ├── README.md ├── SECURITY.md ├── alloydb └── alloydb.go ├── cmd ├── config_test.go ├── errors.go ├── gendocs │ └── main.go ├── root.go ├── root_linux_test.go ├── root_test.go ├── root_windows_test.go ├── testdata │ ├── config-json.json │ ├── config-toml.toml │ ├── config-yaml.yaml │ └── two-instances.toml ├── version.txt └── wait_test.go ├── docs └── cmd │ ├── alloydb-auth-proxy.md │ └── alloydb-auth-proxy_wait.md ├── examples ├── disaster-recovery │ └── README.md ├── go │ ├── Dockerfile │ ├── README.md │ ├── alloydb.go │ ├── alloydb_test.go │ ├── cmd │ │ └── app │ │ │ ├── app.standard.yaml │ │ │ └── main.go │ ├── connect_tcp.go │ ├── go.mod │ ├── go.sum │ └── run_tests.sh ├── k8s-sidecar │ ├── README.md │ ├── direct_connection_deployment.yaml │ ├── proxy_sidecar_deployment.yaml │ ├── service-account.yaml │ └── service.yaml └── multi-container │ └── ruby │ ├── Dockerfile │ ├── Gemfile │ ├── README.md │ ├── app.rb │ ├── config.ru │ └── multicontainer.yaml ├── go.mod ├── go.sum ├── internal ├── gcloud │ ├── gcloud.go │ └── gcloud_test.go ├── healthcheck │ ├── healthcheck.go │ └── healthcheck_test.go ├── log │ └── log.go └── proxy │ ├── fuse.go │ ├── fuse_darwin.go │ ├── fuse_freebsd.go │ ├── fuse_linux.go │ ├── fuse_linux_test.go │ ├── fuse_openbsd.go │ ├── fuse_test.go │ ├── fuse_windows.go │ ├── internal_test.go │ ├── other_test.go │ ├── proxy.go │ ├── proxy_other.go │ ├── proxy_other_test.go │ ├── proxy_test.go │ ├── proxy_windows_test.go │ └── unix.go ├── main.go ├── main_windows.go ├── tests ├── alloydb_test.go ├── common_test.go ├── connection_test.go ├── fuse_test.go └── other_test.go ├── windows-service-guide.md ├── windows_install_service.bat └── windows_remove_service.bat /.envrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.envrc.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @GoogleCloudPlatform/alloydb-connectors-code-owners 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/ISSUE_TEMPLATE/question.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/flakybot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/flakybot.yaml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/trusted-contribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/trusted-contribution.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/cover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/cover.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/govulncheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/govulncheck.yaml -------------------------------------------------------------------------------- /.github/workflows/labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/labels.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/sample-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/sample-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/Dockerfile.alpine -------------------------------------------------------------------------------- /Dockerfile.bookworm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/Dockerfile.bookworm -------------------------------------------------------------------------------- /Dockerfile.bullseye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/Dockerfile.bullseye -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /alloydb/alloydb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/alloydb/alloydb.go -------------------------------------------------------------------------------- /cmd/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/config_test.go -------------------------------------------------------------------------------- /cmd/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/errors.go -------------------------------------------------------------------------------- /cmd/gendocs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/gendocs/main.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/root_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/root_linux_test.go -------------------------------------------------------------------------------- /cmd/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/root_test.go -------------------------------------------------------------------------------- /cmd/root_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/root_windows_test.go -------------------------------------------------------------------------------- /cmd/testdata/config-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/testdata/config-json.json -------------------------------------------------------------------------------- /cmd/testdata/config-toml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/testdata/config-toml.toml -------------------------------------------------------------------------------- /cmd/testdata/config-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/testdata/config-yaml.yaml -------------------------------------------------------------------------------- /cmd/testdata/two-instances.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/testdata/two-instances.toml -------------------------------------------------------------------------------- /cmd/version.txt: -------------------------------------------------------------------------------- 1 | 1.13.8 2 | -------------------------------------------------------------------------------- /cmd/wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/cmd/wait_test.go -------------------------------------------------------------------------------- /docs/cmd/alloydb-auth-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/docs/cmd/alloydb-auth-proxy.md -------------------------------------------------------------------------------- /docs/cmd/alloydb-auth-proxy_wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/docs/cmd/alloydb-auth-proxy_wait.md -------------------------------------------------------------------------------- /examples/disaster-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/disaster-recovery/README.md -------------------------------------------------------------------------------- /examples/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/Dockerfile -------------------------------------------------------------------------------- /examples/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/README.md -------------------------------------------------------------------------------- /examples/go/alloydb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/alloydb.go -------------------------------------------------------------------------------- /examples/go/alloydb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/alloydb_test.go -------------------------------------------------------------------------------- /examples/go/cmd/app/app.standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/cmd/app/app.standard.yaml -------------------------------------------------------------------------------- /examples/go/cmd/app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/cmd/app/main.go -------------------------------------------------------------------------------- /examples/go/connect_tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/connect_tcp.go -------------------------------------------------------------------------------- /examples/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/go.mod -------------------------------------------------------------------------------- /examples/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/go.sum -------------------------------------------------------------------------------- /examples/go/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/go/run_tests.sh -------------------------------------------------------------------------------- /examples/k8s-sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/k8s-sidecar/README.md -------------------------------------------------------------------------------- /examples/k8s-sidecar/direct_connection_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/k8s-sidecar/direct_connection_deployment.yaml -------------------------------------------------------------------------------- /examples/k8s-sidecar/proxy_sidecar_deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/k8s-sidecar/proxy_sidecar_deployment.yaml -------------------------------------------------------------------------------- /examples/k8s-sidecar/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/k8s-sidecar/service-account.yaml -------------------------------------------------------------------------------- /examples/k8s-sidecar/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/k8s-sidecar/service.yaml -------------------------------------------------------------------------------- /examples/multi-container/ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/multi-container/ruby/Dockerfile -------------------------------------------------------------------------------- /examples/multi-container/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/multi-container/ruby/Gemfile -------------------------------------------------------------------------------- /examples/multi-container/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/multi-container/ruby/README.md -------------------------------------------------------------------------------- /examples/multi-container/ruby/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/multi-container/ruby/app.rb -------------------------------------------------------------------------------- /examples/multi-container/ruby/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/multi-container/ruby/config.ru -------------------------------------------------------------------------------- /examples/multi-container/ruby/multicontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/examples/multi-container/ruby/multicontainer.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/go.sum -------------------------------------------------------------------------------- /internal/gcloud/gcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/gcloud/gcloud.go -------------------------------------------------------------------------------- /internal/gcloud/gcloud_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/gcloud/gcloud_test.go -------------------------------------------------------------------------------- /internal/healthcheck/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/healthcheck/healthcheck.go -------------------------------------------------------------------------------- /internal/healthcheck/healthcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/healthcheck/healthcheck_test.go -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/proxy/fuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse.go -------------------------------------------------------------------------------- /internal/proxy/fuse_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_darwin.go -------------------------------------------------------------------------------- /internal/proxy/fuse_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_freebsd.go -------------------------------------------------------------------------------- /internal/proxy/fuse_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_linux.go -------------------------------------------------------------------------------- /internal/proxy/fuse_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_linux_test.go -------------------------------------------------------------------------------- /internal/proxy/fuse_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_openbsd.go -------------------------------------------------------------------------------- /internal/proxy/fuse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_test.go -------------------------------------------------------------------------------- /internal/proxy/fuse_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/fuse_windows.go -------------------------------------------------------------------------------- /internal/proxy/internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/internal_test.go -------------------------------------------------------------------------------- /internal/proxy/other_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/other_test.go -------------------------------------------------------------------------------- /internal/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/proxy.go -------------------------------------------------------------------------------- /internal/proxy/proxy_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/proxy_other.go -------------------------------------------------------------------------------- /internal/proxy/proxy_other_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/proxy_other_test.go -------------------------------------------------------------------------------- /internal/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/proxy_test.go -------------------------------------------------------------------------------- /internal/proxy/proxy_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/proxy_windows_test.go -------------------------------------------------------------------------------- /internal/proxy/unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/internal/proxy/unix.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/main.go -------------------------------------------------------------------------------- /main_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/main_windows.go -------------------------------------------------------------------------------- /tests/alloydb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/tests/alloydb_test.go -------------------------------------------------------------------------------- /tests/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/tests/common_test.go -------------------------------------------------------------------------------- /tests/connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/tests/connection_test.go -------------------------------------------------------------------------------- /tests/fuse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/tests/fuse_test.go -------------------------------------------------------------------------------- /tests/other_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/tests/other_test.go -------------------------------------------------------------------------------- /windows-service-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/windows-service-guide.md -------------------------------------------------------------------------------- /windows_install_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/windows_install_service.bat -------------------------------------------------------------------------------- /windows_remove_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/alloydb-auth-proxy/HEAD/windows_remove_service.bat --------------------------------------------------------------------------------