├── .gitignore ├── CHANGELOG.md ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── aws ├── ec2.go ├── metadata.go ├── route_table.go └── vip.go ├── command ├── list.go ├── list_test.go ├── switch.go └── switch_test.go ├── commands.go ├── main.go └── release.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | .idea 3 | vendor 4 | dist 5 | bin 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/README.md -------------------------------------------------------------------------------- /aws/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/aws/ec2.go -------------------------------------------------------------------------------- /aws/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/aws/metadata.go -------------------------------------------------------------------------------- /aws/route_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/aws/route_table.go -------------------------------------------------------------------------------- /aws/vip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/aws/vip.go -------------------------------------------------------------------------------- /command/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/command/list.go -------------------------------------------------------------------------------- /command/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/command/list_test.go -------------------------------------------------------------------------------- /command/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/command/switch.go -------------------------------------------------------------------------------- /command/switch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/command/switch_test.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/commands.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/main.go -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatena/swiro/HEAD/release.sh --------------------------------------------------------------------------------