├── .github └── workflows │ └── linkchecker.yml ├── .travis.yml ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── admin ├── authors-info.yml ├── reformat-aggressive.sh └── reformat-gentle.sh ├── figures ├── aws-data-transfer-costs-320px.png ├── aws-data-transfer-costs.png ├── aws-market-landscape-320px.png ├── aws-market-landscape.png └── signpost-horiz1-1600.jpg └── translations └── ru.md /.github/workflows/linkchecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/.github/workflows/linkchecker.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/README.md -------------------------------------------------------------------------------- /admin/authors-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/admin/authors-info.yml -------------------------------------------------------------------------------- /admin/reformat-aggressive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/admin/reformat-aggressive.sh -------------------------------------------------------------------------------- /admin/reformat-gentle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/admin/reformat-gentle.sh -------------------------------------------------------------------------------- /figures/aws-data-transfer-costs-320px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/figures/aws-data-transfer-costs-320px.png -------------------------------------------------------------------------------- /figures/aws-data-transfer-costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/figures/aws-data-transfer-costs.png -------------------------------------------------------------------------------- /figures/aws-market-landscape-320px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/figures/aws-market-landscape-320px.png -------------------------------------------------------------------------------- /figures/aws-market-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/figures/aws-market-landscape.png -------------------------------------------------------------------------------- /figures/signpost-horiz1-1600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/figures/signpost-horiz1-1600.jpg -------------------------------------------------------------------------------- /translations/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-guides/og-aws/HEAD/translations/ru.md --------------------------------------------------------------------------------