├── .devcontainer ├── devcontainer.json ├── docker-compose.yml └── setup.sh ├── .gitattributes ├── .github └── workflows │ └── readme.md ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md └── getting-started ├── gihub.md └── github ├── gh_bootstrap_token.png ├── gh_developersettings.png ├── gh_new_pat.png ├── gh_pat_repo.png ├── gh_profile.png └── gh_scopes.png /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.devcontainer/setup.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.github/workflows/readme.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /getting-started/gihub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/gihub.md -------------------------------------------------------------------------------- /getting-started/github/gh_bootstrap_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/github/gh_bootstrap_token.png -------------------------------------------------------------------------------- /getting-started/github/gh_developersettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/github/gh_developersettings.png -------------------------------------------------------------------------------- /getting-started/github/gh_new_pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/github/gh_new_pat.png -------------------------------------------------------------------------------- /getting-started/github/gh_pat_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/github/gh_pat_repo.png -------------------------------------------------------------------------------- /getting-started/github/gh_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/github/gh_profile.png -------------------------------------------------------------------------------- /getting-started/github/gh_scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/caf-terraform-landingzones-platform-starter/HEAD/getting-started/github/gh_scopes.png --------------------------------------------------------------------------------