├── .amazonq └── rules │ ├── amazon-q-operation.md │ ├── cgd-toolkit-gold-standard.md │ ├── development-hygiene.md │ ├── kubectl-workflow.md │ └── terraform-breaking-changes.md ├── .chglog ├── CHANGELOG.tpl.md └── config.yml ├── .config ├── .checkov.yml └── .terraform-docs.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_improvements.yml │ ├── feature_request.yml │ ├── maintenance.yml │ └── rfc.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── release-drafter.yml ├── semantic.yml └── workflows │ ├── changelog.yml │ ├── checkov.yml │ ├── codeql-analysis.yml │ ├── dependency-review.yml │ ├── docs.yml │ ├── jenkins-deployment.yml │ ├── ossf_scorecard.yml │ ├── pre-commit.yaml │ ├── release-drafter.yml │ ├── tf-test-on-comment-modules-perforce.yml │ └── trivy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── THIRD-PARTY-LICENSES ├── assets ├── ansible-playbooks │ └── perforce │ │ └── p4-server │ │ ├── README.md │ │ ├── commit_playbook.yml │ │ └── replica_playbook.yml ├── jenkins-pipelines │ ├── README.md │ ├── delete_oldest_snapshot.groovy │ ├── gamelift_sdk.groovy │ ├── godot.groovy │ ├── multiplatform_build.groovy │ └── ue5_build_pipeline.groovy └── packer │ ├── build-agents │ ├── linux │ │ ├── README.md │ │ ├── amazon-linux-2023-arm64.pkr.hcl │ │ ├── amazon-linux-2023-x86_64.pkr.hcl │ │ ├── create_swap.service │ │ ├── create_swap.sh │ │ ├── example.pkrvars.hcl │ │ ├── fsx_automounter.py │ │ ├── fsx_automounter.service │ │ ├── install_common.al2023.sh │ │ ├── install_common.ubuntu.sh │ │ ├── install_mold.sh │ │ ├── install_octobuild.al2023.x86_64.sh │ │ ├── install_octobuild.ubuntu.x86_64.sh │ │ ├── install_sccache.sh │ │ ├── mount_ephemeral.service │ │ ├── mount_ephemeral.sh │ │ ├── octobuild.conf │ │ ├── sccache.service │ │ ├── ubuntu-jammy-22.04-amd64-server.pkr.hcl │ │ └── ubuntu-jammy-22.04-arm64-server.pkr.hcl │ └── windows │ │ ├── README.md │ │ ├── base_setup.ps1 │ │ ├── example.pkrvars.hcl │ │ ├── install_vs_tools.ps1 │ │ ├── setup_jenkins_agent.ps1 │ │ ├── userdata.ps1 │ │ └── windows.pkr.hcl │ ├── perforce │ └── p4-server │ │ ├── README.md │ │ ├── example.pkrvars.hcl │ │ ├── p4_configure.sh │ │ ├── p4_setup.sh │ │ ├── perforce_arm64.pkr.hcl │ │ └── perforce_x86.pkr.hcl │ └── virtual-workstations │ ├── README.md │ ├── lightweight │ ├── README.md │ ├── variables.pkrvars.hcl.example │ └── windows-server-2025-lightweight.pkr.hcl │ ├── shared │ ├── base_infrastructure.ps1 │ ├── sysprep.ps1 │ └── userdata.ps1 │ └── ue-gamedev │ ├── README.md │ ├── unreal_development_stack.ps1 │ └── windows-server-2025-ue-gamedev.pkr.hcl ├── docs ├── Dockerfile ├── assets │ ├── dockerfiles.md │ ├── index.md │ └── packer │ │ └── index.md ├── changelog.md ├── contributing.md ├── getting-started.md ├── index.md ├── media │ ├── diagrams │ │ ├── jenkins-module-architecture.drawio │ │ ├── perforce-arch-cdg-toolkit-terraform-aws-perforce-full-arch-route53-dns.png │ │ ├── perforce-module-architectures.drawio │ │ ├── perforce_complete_example.drawio │ │ ├── teamcity-server-architecture.drawio │ │ ├── unreal-cloud-ddc-infra.drawio │ │ ├── unreal-cloud-ddc-single-region.drawio │ │ └── unreal-engine-horde-architecture.drawio │ ├── images │ │ ├── access-jenkins.png │ │ ├── helix-auth-service-architecture.png │ │ ├── helix-core-architecture.png │ │ ├── helix-swarm-architecture.jpg │ │ ├── helix-swarm-architecture.png │ │ ├── jenkins-admin-password.png │ │ ├── jenkins-module-architecture.png │ │ ├── perforce-complete-example.jpg │ │ ├── perforce-complete-example.png │ │ ├── teamcity-server-architecture.png │ │ ├── unreal-cloud-ddc-infra.png │ │ ├── unreal-cloud-ddc-single-region.png │ │ └── unreal-engine-horde-architecture.png │ └── logos │ │ ├── aws-logo-white.svg │ │ └── favicon.ico ├── modules │ └── index.md ├── overrides │ ├── index.html │ └── main.html ├── requirements.txt ├── security.md └── stylesheets │ ├── companies.css │ ├── extra.css │ ├── hero.css │ └── themes.css ├── mkdocs.yml ├── modules ├── CONTRIBUTING.md ├── DESIGN_STANDARDS.md ├── README.md ├── jenkins │ ├── README.md │ ├── alb.tf │ ├── asg.tf │ ├── assets │ │ └── media │ │ │ └── diagrams │ │ │ ├── jenkins-admin-password.png │ │ │ └── jenkins-module-architecture.png │ ├── data.tf │ ├── ecs.tf │ ├── efs.tf │ ├── examples │ │ └── complete │ │ │ ├── dns.tf │ │ │ ├── local.tf │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ ├── versions.tf │ │ │ └── vpc.tf │ ├── fsxz.tf │ ├── iam.tf │ ├── local.tf │ ├── outputs.tf │ ├── s3.tf │ ├── sg.tf │ ├── variables.tf │ └── versions.tf ├── perforce │ ├── README.md │ ├── assets │ │ └── media │ │ │ └── diagrams │ │ │ ├── p4-auth-architecture.png │ │ │ ├── p4-code-review-architecture.png │ │ │ ├── p4-server-architecture.png │ │ │ └── perforce-arch-cdg-toolkit-terraform-aws-perforce-full-arch-route53-dns.png │ ├── examples │ │ ├── create-resources-complete │ │ │ ├── README.md │ │ │ ├── dns.tf │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── security.tf │ │ │ ├── variables.tf │ │ │ ├── versions.tf │ │ │ └── vpc.tf │ │ └── p4-server-fsxn │ │ │ ├── data.tf │ │ │ ├── dns.tf │ │ │ ├── local.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ ├── versions.tf │ │ │ └── vpc.tf │ ├── lb.tf │ ├── locals.tf │ ├── main.tf │ ├── modules │ │ ├── p4-auth │ │ │ ├── README.md │ │ │ ├── alb.tf │ │ │ ├── data.tf │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── sg.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ ├── p4-code-review │ │ │ ├── README.md │ │ │ ├── alb.tf │ │ │ ├── data.tf │ │ │ ├── elasticache.tf │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── sg.tf │ │ │ ├── variables.tf │ │ │ └── versions.tf │ │ └── p4-server │ │ │ ├── README.md │ │ │ ├── data.tf │ │ │ ├── fsxn.tf │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── sg.tf │ │ │ ├── templates │ │ │ └── user_data.tftpl │ │ │ ├── variables.tf │ │ │ └── versions.tf │ ├── outputs.tf │ ├── route53.tf │ ├── sg.tf │ ├── tests │ │ ├── 01_create_resources_complete.tftest.hcl │ │ ├── 02_p4_server_fsxn.tftest.hcl │ │ └── setup │ │ │ ├── ssm.tf │ │ │ └── versions.tf │ ├── variables.tf │ └── versions.tf ├── teamcity │ ├── README.md │ ├── agents.tf │ ├── assets │ │ └── media │ │ │ └── diagrams │ │ │ └── teamcity-server-architecture.png │ ├── examples │ │ └── simple │ │ │ ├── dns.tf │ │ │ ├── local.tf │ │ │ ├── main.tf │ │ │ ├── versions.tf │ │ │ └── vpc.tf │ ├── local.tf │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── unity │ ├── accelerator │ │ ├── README.md │ │ ├── assets │ │ │ └── media │ │ │ │ └── diagrams │ │ │ │ └── unity-accelerator-architecture.png │ │ ├── examples │ │ │ └── simple │ │ │ │ ├── dns.tf │ │ │ │ ├── local.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ ├── versions.tf │ │ │ │ └── vpc.tf │ │ ├── local.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ └── floating-license-server │ │ ├── README.md │ │ ├── alb.tf │ │ ├── assets │ │ └── media │ │ │ └── diagrams │ │ │ ├── unity-licensing-server-architecture1.png │ │ │ └── unity-licensing-server-architecture2.png │ │ ├── examples │ │ └── simple │ │ │ ├── dns.tf │ │ │ ├── local.tf │ │ │ ├── main.tf │ │ │ ├── variables.tf │ │ │ ├── versions.tf │ │ │ └── vpc.tf │ │ ├── local.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── scripts │ │ ├── daemon_setup.sh │ │ ├── daemon_setup_expect.exp │ │ ├── daemon_setup_systemd.service │ │ ├── daemon_setup_watch.sh │ │ ├── server_setup.sh │ │ ├── server_setup_expect.exp │ │ ├── server_setup_systemd.service │ │ └── user_data.tpl │ │ ├── variables.tf │ │ └── versions.tf ├── unreal │ ├── horde │ │ ├── README.md │ │ ├── alb.tf │ │ ├── asg.tf │ │ ├── assets │ │ │ └── media │ │ │ │ └── diagrams │ │ │ │ └── unreal-engine-horde-architecture.png │ │ ├── config │ │ │ ├── agent │ │ │ │ ├── horde-agent.ansible.yml │ │ │ │ └── horde-agent.service │ │ │ └── ssm │ │ │ │ └── AnsibleRunCommand.json │ │ ├── docdb.tf │ │ ├── ecs.tf │ │ ├── elasticache.tf │ │ ├── examples │ │ │ └── complete │ │ │ │ ├── data.tf │ │ │ │ ├── dns.tf │ │ │ │ ├── main.tf │ │ │ │ ├── variables.tf │ │ │ │ ├── versions.tf │ │ │ │ └── vpc.tf │ │ ├── iam.tf │ │ ├── local.tf │ │ ├── outputs.tf │ │ ├── sg.tf │ │ ├── variables.tf │ │ └── versions.tf │ └── unreal-cloud-ddc │ │ ├── unreal-cloud-ddc-infra │ │ ├── README.md │ │ ├── assets │ │ │ └── media │ │ │ │ └── diagrams │ │ │ │ └── unreal-cloud-ddc-infra.png │ │ ├── data.tf │ │ ├── eks.tf │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── monitoring.tf │ │ ├── outputs.tf │ │ ├── s3.tf │ │ ├── scylla.tf │ │ ├── sg.tf │ │ ├── variables.tf │ │ └── versions.tf │ │ └── unreal-cloud-ddc-intra-cluster │ │ ├── README.md │ │ ├── assets │ │ └── media │ │ │ └── diagrams │ │ │ └── unreal-cloud-ddc-single-region.png │ │ ├── data.tf │ │ ├── helm.tf │ │ ├── iam.tf │ │ ├── locals.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf └── vdi │ ├── README.md │ ├── assets │ └── scripts │ │ ├── create-vdi-users.ps1 │ │ └── initialize-volumes.ps1 │ ├── client-vpn.tf │ ├── data.tf │ ├── examples │ ├── private-connectivity │ │ ├── README.md │ │ ├── data.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── security.tf │ │ ├── versions.tf │ │ └── vpc.tf │ └── public-connectivity │ │ ├── README.md │ │ ├── data.tf │ │ ├── locals.tf │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── security.tf │ │ ├── versions.tf │ │ └── vpc.tf │ ├── iam.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── route53.tf │ ├── s3.tf │ ├── sg.tf │ ├── ssm.tf │ ├── tests │ ├── 01_public_connectivity.tftest.hcl │ └── setup │ │ ├── ssm.tf │ │ └── versions.tf │ ├── variables.tf │ └── versions.tf ├── samples ├── README.md ├── simple-build-pipeline │ ├── README.md │ ├── dns.tf │ ├── lb.tf │ ├── locals.tf │ ├── main.tf │ ├── outputs.tf │ ├── security.tf │ ├── variables.tf │ ├── versions.tf │ └── vpc.tf └── unreal-cloud-ddc-single-region │ ├── README.md │ ├── assets │ ├── sanity_check.sh │ └── unreal_cloud_ddc_single_region.yaml │ ├── dns.tf │ ├── local.tf │ ├── main.tf │ ├── outputs.tf │ ├── providers.tf │ ├── variables.tf │ └── vpc │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf └── test-vdi-components.ps1 /.amazonq/rules/amazon-q-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.amazonq/rules/amazon-q-operation.md -------------------------------------------------------------------------------- /.amazonq/rules/cgd-toolkit-gold-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.amazonq/rules/cgd-toolkit-gold-standard.md -------------------------------------------------------------------------------- /.amazonq/rules/development-hygiene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.amazonq/rules/development-hygiene.md -------------------------------------------------------------------------------- /.amazonq/rules/kubectl-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.amazonq/rules/kubectl-workflow.md -------------------------------------------------------------------------------- /.amazonq/rules/terraform-breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.amazonq/rules/terraform-breaking-changes.md -------------------------------------------------------------------------------- /.chglog/CHANGELOG.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.chglog/CHANGELOG.tpl.md -------------------------------------------------------------------------------- /.chglog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.chglog/config.yml -------------------------------------------------------------------------------- /.config/.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.config/.checkov.yml -------------------------------------------------------------------------------- /.config/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.config/.terraform-docs.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_improvements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/ISSUE_TEMPLATE/documentation_improvements.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/ISSUE_TEMPLATE/maintenance.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rfc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/ISSUE_TEMPLATE/rfc.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/checkov.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/jenkins-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/ossf_scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/ossf_scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/tf-test-on-comment-modules-perforce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/tf-test-on-comment-modules-perforce.yml -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY-LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/THIRD-PARTY-LICENSES -------------------------------------------------------------------------------- /assets/ansible-playbooks/perforce/p4-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/ansible-playbooks/perforce/p4-server/README.md -------------------------------------------------------------------------------- /assets/ansible-playbooks/perforce/p4-server/commit_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/ansible-playbooks/perforce/p4-server/commit_playbook.yml -------------------------------------------------------------------------------- /assets/ansible-playbooks/perforce/p4-server/replica_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/ansible-playbooks/perforce/p4-server/replica_playbook.yml -------------------------------------------------------------------------------- /assets/jenkins-pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/jenkins-pipelines/README.md -------------------------------------------------------------------------------- /assets/jenkins-pipelines/delete_oldest_snapshot.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/jenkins-pipelines/delete_oldest_snapshot.groovy -------------------------------------------------------------------------------- /assets/jenkins-pipelines/gamelift_sdk.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/jenkins-pipelines/gamelift_sdk.groovy -------------------------------------------------------------------------------- /assets/jenkins-pipelines/godot.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/jenkins-pipelines/godot.groovy -------------------------------------------------------------------------------- /assets/jenkins-pipelines/multiplatform_build.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/jenkins-pipelines/multiplatform_build.groovy -------------------------------------------------------------------------------- /assets/jenkins-pipelines/ue5_build_pipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/jenkins-pipelines/ue5_build_pipeline.groovy -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/README.md -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/amazon-linux-2023-x86_64.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/amazon-linux-2023-x86_64.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/create_swap.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/create_swap.service -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/create_swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/create_swap.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/example.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/example.pkrvars.hcl -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/fsx_automounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/fsx_automounter.py -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/fsx_automounter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/fsx_automounter.service -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/install_common.al2023.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/install_common.al2023.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/install_common.ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/install_common.ubuntu.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/install_mold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/install_mold.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/install_octobuild.al2023.x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/install_octobuild.al2023.x86_64.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/install_octobuild.ubuntu.x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/install_octobuild.ubuntu.x86_64.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/install_sccache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/install_sccache.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/mount_ephemeral.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/mount_ephemeral.service -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/mount_ephemeral.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/mount_ephemeral.sh -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/octobuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/octobuild.conf -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/sccache.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/sccache.service -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/ubuntu-jammy-22.04-amd64-server.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/ubuntu-jammy-22.04-amd64-server.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/build-agents/linux/ubuntu-jammy-22.04-arm64-server.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/linux/ubuntu-jammy-22.04-arm64-server.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/README.md -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/base_setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/base_setup.ps1 -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/example.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/example.pkrvars.hcl -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/install_vs_tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/install_vs_tools.ps1 -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/setup_jenkins_agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/setup_jenkins_agent.ps1 -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/userdata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/userdata.ps1 -------------------------------------------------------------------------------- /assets/packer/build-agents/windows/windows.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/build-agents/windows/windows.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/perforce/p4-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/perforce/p4-server/README.md -------------------------------------------------------------------------------- /assets/packer/perforce/p4-server/example.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/perforce/p4-server/example.pkrvars.hcl -------------------------------------------------------------------------------- /assets/packer/perforce/p4-server/p4_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/perforce/p4-server/p4_configure.sh -------------------------------------------------------------------------------- /assets/packer/perforce/p4-server/p4_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/perforce/p4-server/p4_setup.sh -------------------------------------------------------------------------------- /assets/packer/perforce/p4-server/perforce_arm64.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/perforce/p4-server/perforce_arm64.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/perforce/p4-server/perforce_x86.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/perforce/p4-server/perforce_x86.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/README.md -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/lightweight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/lightweight/README.md -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/lightweight/variables.pkrvars.hcl.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/lightweight/variables.pkrvars.hcl.example -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/lightweight/windows-server-2025-lightweight.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/lightweight/windows-server-2025-lightweight.pkr.hcl -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/shared/base_infrastructure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/shared/base_infrastructure.ps1 -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/shared/sysprep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/shared/sysprep.ps1 -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/shared/userdata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/shared/userdata.ps1 -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/ue-gamedev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/ue-gamedev/README.md -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/ue-gamedev/unreal_development_stack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/ue-gamedev/unreal_development_stack.ps1 -------------------------------------------------------------------------------- /assets/packer/virtual-workstations/ue-gamedev/windows-server-2025-ue-gamedev.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/assets/packer/virtual-workstations/ue-gamedev/windows-server-2025-ue-gamedev.pkr.hcl -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/assets/dockerfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/assets/dockerfiles.md -------------------------------------------------------------------------------- /docs/assets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/assets/index.md -------------------------------------------------------------------------------- /docs/assets/packer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/assets/packer/index.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" 2 | -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | --8<-- "CONTRIBUTING.md" 2 | -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/media/diagrams/jenkins-module-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/jenkins-module-architecture.drawio -------------------------------------------------------------------------------- /docs/media/diagrams/perforce-arch-cdg-toolkit-terraform-aws-perforce-full-arch-route53-dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/perforce-arch-cdg-toolkit-terraform-aws-perforce-full-arch-route53-dns.png -------------------------------------------------------------------------------- /docs/media/diagrams/perforce-module-architectures.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/perforce-module-architectures.drawio -------------------------------------------------------------------------------- /docs/media/diagrams/perforce_complete_example.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/perforce_complete_example.drawio -------------------------------------------------------------------------------- /docs/media/diagrams/teamcity-server-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/teamcity-server-architecture.drawio -------------------------------------------------------------------------------- /docs/media/diagrams/unreal-cloud-ddc-infra.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/unreal-cloud-ddc-infra.drawio -------------------------------------------------------------------------------- /docs/media/diagrams/unreal-cloud-ddc-single-region.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/unreal-cloud-ddc-single-region.drawio -------------------------------------------------------------------------------- /docs/media/diagrams/unreal-engine-horde-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/diagrams/unreal-engine-horde-architecture.drawio -------------------------------------------------------------------------------- /docs/media/images/access-jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/access-jenkins.png -------------------------------------------------------------------------------- /docs/media/images/helix-auth-service-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/helix-auth-service-architecture.png -------------------------------------------------------------------------------- /docs/media/images/helix-core-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/helix-core-architecture.png -------------------------------------------------------------------------------- /docs/media/images/helix-swarm-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/helix-swarm-architecture.jpg -------------------------------------------------------------------------------- /docs/media/images/helix-swarm-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/helix-swarm-architecture.png -------------------------------------------------------------------------------- /docs/media/images/jenkins-admin-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/jenkins-admin-password.png -------------------------------------------------------------------------------- /docs/media/images/jenkins-module-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/jenkins-module-architecture.png -------------------------------------------------------------------------------- /docs/media/images/perforce-complete-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/perforce-complete-example.jpg -------------------------------------------------------------------------------- /docs/media/images/perforce-complete-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/perforce-complete-example.png -------------------------------------------------------------------------------- /docs/media/images/teamcity-server-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/teamcity-server-architecture.png -------------------------------------------------------------------------------- /docs/media/images/unreal-cloud-ddc-infra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/unreal-cloud-ddc-infra.png -------------------------------------------------------------------------------- /docs/media/images/unreal-cloud-ddc-single-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/unreal-cloud-ddc-single-region.png -------------------------------------------------------------------------------- /docs/media/images/unreal-engine-horde-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/images/unreal-engine-horde-architecture.png -------------------------------------------------------------------------------- /docs/media/logos/aws-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/logos/aws-logo-white.svg -------------------------------------------------------------------------------- /docs/media/logos/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/media/logos/favicon.ico -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/overrides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/overrides/index.html -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- 1 | --8<-- "SECURITY.md" 2 | -------------------------------------------------------------------------------- /docs/stylesheets/companies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/stylesheets/companies.css -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/stylesheets/hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/stylesheets/hero.css -------------------------------------------------------------------------------- /docs/stylesheets/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/docs/stylesheets/themes.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /modules/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/CONTRIBUTING.md -------------------------------------------------------------------------------- /modules/DESIGN_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/DESIGN_STANDARDS.md -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/README.md -------------------------------------------------------------------------------- /modules/jenkins/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/alb.tf -------------------------------------------------------------------------------- /modules/jenkins/asg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/asg.tf -------------------------------------------------------------------------------- /modules/jenkins/assets/media/diagrams/jenkins-admin-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/assets/media/diagrams/jenkins-admin-password.png -------------------------------------------------------------------------------- /modules/jenkins/assets/media/diagrams/jenkins-module-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/assets/media/diagrams/jenkins-module-architecture.png -------------------------------------------------------------------------------- /modules/jenkins/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/data.tf -------------------------------------------------------------------------------- /modules/jenkins/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/ecs.tf -------------------------------------------------------------------------------- /modules/jenkins/efs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/efs.tf -------------------------------------------------------------------------------- /modules/jenkins/examples/complete/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/examples/complete/dns.tf -------------------------------------------------------------------------------- /modules/jenkins/examples/complete/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/examples/complete/local.tf -------------------------------------------------------------------------------- /modules/jenkins/examples/complete/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/examples/complete/main.tf -------------------------------------------------------------------------------- /modules/jenkins/examples/complete/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/examples/complete/variables.tf -------------------------------------------------------------------------------- /modules/jenkins/examples/complete/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/examples/complete/versions.tf -------------------------------------------------------------------------------- /modules/jenkins/examples/complete/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/examples/complete/vpc.tf -------------------------------------------------------------------------------- /modules/jenkins/fsxz.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/fsxz.tf -------------------------------------------------------------------------------- /modules/jenkins/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/iam.tf -------------------------------------------------------------------------------- /modules/jenkins/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/local.tf -------------------------------------------------------------------------------- /modules/jenkins/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/outputs.tf -------------------------------------------------------------------------------- /modules/jenkins/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/s3.tf -------------------------------------------------------------------------------- /modules/jenkins/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/sg.tf -------------------------------------------------------------------------------- /modules/jenkins/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/variables.tf -------------------------------------------------------------------------------- /modules/jenkins/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/jenkins/versions.tf -------------------------------------------------------------------------------- /modules/perforce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/README.md -------------------------------------------------------------------------------- /modules/perforce/assets/media/diagrams/p4-auth-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/assets/media/diagrams/p4-auth-architecture.png -------------------------------------------------------------------------------- /modules/perforce/assets/media/diagrams/p4-code-review-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/assets/media/diagrams/p4-code-review-architecture.png -------------------------------------------------------------------------------- /modules/perforce/assets/media/diagrams/p4-server-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/assets/media/diagrams/p4-server-architecture.png -------------------------------------------------------------------------------- /modules/perforce/assets/media/diagrams/perforce-arch-cdg-toolkit-terraform-aws-perforce-full-arch-route53-dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/assets/media/diagrams/perforce-arch-cdg-toolkit-terraform-aws-perforce-full-arch-route53-dns.png -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/README.md -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/dns.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/locals.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/main.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/outputs.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/security.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/variables.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/versions.tf -------------------------------------------------------------------------------- /modules/perforce/examples/create-resources-complete/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/create-resources-complete/vpc.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/data.tf: -------------------------------------------------------------------------------- 1 | data "aws_region" "current" {} 2 | -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/dns.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/local.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/main.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/outputs.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/variables.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/versions.tf -------------------------------------------------------------------------------- /modules/perforce/examples/p4-server-fsxn/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/examples/p4-server-fsxn/vpc.tf -------------------------------------------------------------------------------- /modules/perforce/lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/lb.tf -------------------------------------------------------------------------------- /modules/perforce/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/locals.tf -------------------------------------------------------------------------------- /modules/perforce/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/main.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/README.md -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/alb.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/data.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/iam.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/locals.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/main.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/outputs.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/sg.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/variables.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-auth/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-auth/versions.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/README.md -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/alb.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/data.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/elasticache.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/elasticache.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/iam.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/locals.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/main.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/outputs.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/sg.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/variables.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-code-review/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-code-review/versions.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/README.md -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/data.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/fsxn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/fsxn.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/iam.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/locals.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/main.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/outputs.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/sg.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/templates/user_data.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/templates/user_data.tftpl -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/variables.tf -------------------------------------------------------------------------------- /modules/perforce/modules/p4-server/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/modules/p4-server/versions.tf -------------------------------------------------------------------------------- /modules/perforce/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/outputs.tf -------------------------------------------------------------------------------- /modules/perforce/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/route53.tf -------------------------------------------------------------------------------- /modules/perforce/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/sg.tf -------------------------------------------------------------------------------- /modules/perforce/tests/01_create_resources_complete.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/tests/01_create_resources_complete.tftest.hcl -------------------------------------------------------------------------------- /modules/perforce/tests/02_p4_server_fsxn.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/tests/02_p4_server_fsxn.tftest.hcl -------------------------------------------------------------------------------- /modules/perforce/tests/setup/ssm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/tests/setup/ssm.tf -------------------------------------------------------------------------------- /modules/perforce/tests/setup/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/tests/setup/versions.tf -------------------------------------------------------------------------------- /modules/perforce/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/variables.tf -------------------------------------------------------------------------------- /modules/perforce/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/perforce/versions.tf -------------------------------------------------------------------------------- /modules/teamcity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/README.md -------------------------------------------------------------------------------- /modules/teamcity/agents.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/agents.tf -------------------------------------------------------------------------------- /modules/teamcity/assets/media/diagrams/teamcity-server-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/assets/media/diagrams/teamcity-server-architecture.png -------------------------------------------------------------------------------- /modules/teamcity/examples/simple/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/examples/simple/dns.tf -------------------------------------------------------------------------------- /modules/teamcity/examples/simple/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/examples/simple/local.tf -------------------------------------------------------------------------------- /modules/teamcity/examples/simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/examples/simple/main.tf -------------------------------------------------------------------------------- /modules/teamcity/examples/simple/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/examples/simple/versions.tf -------------------------------------------------------------------------------- /modules/teamcity/examples/simple/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/examples/simple/vpc.tf -------------------------------------------------------------------------------- /modules/teamcity/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/local.tf -------------------------------------------------------------------------------- /modules/teamcity/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/main.tf -------------------------------------------------------------------------------- /modules/teamcity/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/outputs.tf -------------------------------------------------------------------------------- /modules/teamcity/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/variables.tf -------------------------------------------------------------------------------- /modules/teamcity/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/teamcity/versions.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/README.md -------------------------------------------------------------------------------- /modules/unity/accelerator/assets/media/diagrams/unity-accelerator-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/assets/media/diagrams/unity-accelerator-architecture.png -------------------------------------------------------------------------------- /modules/unity/accelerator/examples/simple/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/examples/simple/dns.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/examples/simple/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/examples/simple/local.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/examples/simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/examples/simple/main.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/examples/simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/examples/simple/variables.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/examples/simple/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/examples/simple/versions.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/examples/simple/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/examples/simple/vpc.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/local.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/main.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/outputs.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/variables.tf -------------------------------------------------------------------------------- /modules/unity/accelerator/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/accelerator/versions.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/README.md -------------------------------------------------------------------------------- /modules/unity/floating-license-server/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/alb.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/assets/media/diagrams/unity-licensing-server-architecture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/assets/media/diagrams/unity-licensing-server-architecture1.png -------------------------------------------------------------------------------- /modules/unity/floating-license-server/assets/media/diagrams/unity-licensing-server-architecture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/assets/media/diagrams/unity-licensing-server-architecture2.png -------------------------------------------------------------------------------- /modules/unity/floating-license-server/examples/simple/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/examples/simple/dns.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/examples/simple/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/examples/simple/local.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/examples/simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/examples/simple/main.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/examples/simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/examples/simple/variables.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/examples/simple/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/examples/simple/versions.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/examples/simple/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/examples/simple/vpc.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/local.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/main.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/outputs.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/daemon_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/daemon_setup.sh -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/daemon_setup_expect.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/daemon_setup_expect.exp -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/daemon_setup_systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/daemon_setup_systemd.service -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/daemon_setup_watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/daemon_setup_watch.sh -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/server_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/server_setup.sh -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/server_setup_expect.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/server_setup_expect.exp -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/server_setup_systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/server_setup_systemd.service -------------------------------------------------------------------------------- /modules/unity/floating-license-server/scripts/user_data.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/scripts/user_data.tpl -------------------------------------------------------------------------------- /modules/unity/floating-license-server/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/variables.tf -------------------------------------------------------------------------------- /modules/unity/floating-license-server/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unity/floating-license-server/versions.tf -------------------------------------------------------------------------------- /modules/unreal/horde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/README.md -------------------------------------------------------------------------------- /modules/unreal/horde/alb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/alb.tf -------------------------------------------------------------------------------- /modules/unreal/horde/asg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/asg.tf -------------------------------------------------------------------------------- /modules/unreal/horde/assets/media/diagrams/unreal-engine-horde-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/assets/media/diagrams/unreal-engine-horde-architecture.png -------------------------------------------------------------------------------- /modules/unreal/horde/config/agent/horde-agent.ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/config/agent/horde-agent.ansible.yml -------------------------------------------------------------------------------- /modules/unreal/horde/config/agent/horde-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/config/agent/horde-agent.service -------------------------------------------------------------------------------- /modules/unreal/horde/config/ssm/AnsibleRunCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/config/ssm/AnsibleRunCommand.json -------------------------------------------------------------------------------- /modules/unreal/horde/docdb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/docdb.tf -------------------------------------------------------------------------------- /modules/unreal/horde/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/ecs.tf -------------------------------------------------------------------------------- /modules/unreal/horde/elasticache.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/elasticache.tf -------------------------------------------------------------------------------- /modules/unreal/horde/examples/complete/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/examples/complete/data.tf -------------------------------------------------------------------------------- /modules/unreal/horde/examples/complete/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/examples/complete/dns.tf -------------------------------------------------------------------------------- /modules/unreal/horde/examples/complete/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/examples/complete/main.tf -------------------------------------------------------------------------------- /modules/unreal/horde/examples/complete/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/examples/complete/variables.tf -------------------------------------------------------------------------------- /modules/unreal/horde/examples/complete/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/examples/complete/versions.tf -------------------------------------------------------------------------------- /modules/unreal/horde/examples/complete/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/examples/complete/vpc.tf -------------------------------------------------------------------------------- /modules/unreal/horde/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/iam.tf -------------------------------------------------------------------------------- /modules/unreal/horde/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/local.tf -------------------------------------------------------------------------------- /modules/unreal/horde/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/outputs.tf -------------------------------------------------------------------------------- /modules/unreal/horde/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/sg.tf -------------------------------------------------------------------------------- /modules/unreal/horde/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/variables.tf -------------------------------------------------------------------------------- /modules/unreal/horde/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/horde/versions.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/README.md -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/assets/media/diagrams/unreal-cloud-ddc-infra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/assets/media/diagrams/unreal-cloud-ddc-infra.png -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/data.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/eks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/eks.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/iam.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/locals.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/monitoring.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/monitoring.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/outputs.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/s3.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/scylla.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/scylla.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/sg.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/variables.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-infra/versions.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/README.md -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/assets/media/diagrams/unreal-cloud-ddc-single-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/assets/media/diagrams/unreal-cloud-ddc-single-region.png -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/data.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/helm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/helm.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/iam.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/locals.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/outputs.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/variables.tf -------------------------------------------------------------------------------- /modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/unreal/unreal-cloud-ddc/unreal-cloud-ddc-intra-cluster/versions.tf -------------------------------------------------------------------------------- /modules/vdi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/README.md -------------------------------------------------------------------------------- /modules/vdi/assets/scripts/create-vdi-users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/assets/scripts/create-vdi-users.ps1 -------------------------------------------------------------------------------- /modules/vdi/assets/scripts/initialize-volumes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/assets/scripts/initialize-volumes.ps1 -------------------------------------------------------------------------------- /modules/vdi/client-vpn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/client-vpn.tf -------------------------------------------------------------------------------- /modules/vdi/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/data.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/README.md -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/data.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/locals.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/main.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/outputs.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/security.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/versions.tf -------------------------------------------------------------------------------- /modules/vdi/examples/private-connectivity/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/private-connectivity/vpc.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/README.md -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/data.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/locals.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/main.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/outputs.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/security.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/versions.tf -------------------------------------------------------------------------------- /modules/vdi/examples/public-connectivity/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/examples/public-connectivity/vpc.tf -------------------------------------------------------------------------------- /modules/vdi/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/iam.tf -------------------------------------------------------------------------------- /modules/vdi/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/locals.tf -------------------------------------------------------------------------------- /modules/vdi/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/main.tf -------------------------------------------------------------------------------- /modules/vdi/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/outputs.tf -------------------------------------------------------------------------------- /modules/vdi/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/route53.tf -------------------------------------------------------------------------------- /modules/vdi/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/s3.tf -------------------------------------------------------------------------------- /modules/vdi/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/sg.tf -------------------------------------------------------------------------------- /modules/vdi/ssm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/ssm.tf -------------------------------------------------------------------------------- /modules/vdi/tests/01_public_connectivity.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/tests/01_public_connectivity.tftest.hcl -------------------------------------------------------------------------------- /modules/vdi/tests/setup/ssm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/tests/setup/ssm.tf -------------------------------------------------------------------------------- /modules/vdi/tests/setup/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/tests/setup/versions.tf -------------------------------------------------------------------------------- /modules/vdi/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/variables.tf -------------------------------------------------------------------------------- /modules/vdi/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/modules/vdi/versions.tf -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/simple-build-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/README.md -------------------------------------------------------------------------------- /samples/simple-build-pipeline/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/dns.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/lb.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/locals.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/main.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/outputs.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/security.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/variables.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/versions.tf -------------------------------------------------------------------------------- /samples/simple-build-pipeline/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/simple-build-pipeline/vpc.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/README.md -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/assets/sanity_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/assets/sanity_check.sh -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/assets/unreal_cloud_ddc_single_region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/assets/unreal_cloud_ddc_single_region.yaml -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/dns.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/local.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/main.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/outputs.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/providers.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/variables.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/vpc/main.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/vpc/outputs.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/vpc/variables.tf -------------------------------------------------------------------------------- /samples/unreal-cloud-ddc-single-region/vpc/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/samples/unreal-cloud-ddc-single-region/vpc/versions.tf -------------------------------------------------------------------------------- /test-vdi-components.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-games/cloud-game-development-toolkit/HEAD/test-vdi-components.ps1 --------------------------------------------------------------------------------