├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── metadata.yml ├── resources ├── README.md ├── cloudformation.yml ├── scripts │ ├── apache_config.cnf │ ├── database_ubuntu.sh │ ├── db_import.sql │ ├── uploads.zip │ └── webserver_ubuntu.sh ├── src │ ├── create_key_pair │ │ ├── cfnresponse.py │ │ ├── generate_ssh_key.py │ │ └── requirements.txt │ └── get_ssh_key_from_ssm │ │ ├── index.py │ │ └── requirements.txt └── static │ ├── cloudformation-launch-stack.png │ └── migration_gameday_logo_small.png └── workshop ├── config.toml ├── content ├── _index.de.md ├── _index.en.md ├── _index.es.md ├── _index.fr.md ├── _index.it.md ├── _index.ja.md ├── _index.nl.md ├── _index.pt.md ├── _index.zh.md ├── app-mig-service │ ├── _index.en.md │ ├── _index.fr.md │ ├── install_agent.en.md │ ├── install_agent.fr.md │ ├── launch.en.md │ ├── launch.fr.md │ ├── server_details.en.md │ ├── server_details.fr.md │ ├── setup.en.md │ ├── setup.fr.md │ ├── test.en.md │ ├── test.fr.md │ ├── webserver_config.en.md │ └── webserver_config.fr.md ├── cleanup │ ├── _index.de.md │ ├── _index.en.md │ ├── _index.es.md │ ├── _index.fr.md │ ├── _index.it.md │ ├── _index.ja.md │ ├── _index.nl.md │ ├── _index.pt.md │ └── _index.zh.md ├── container-migration │ ├── _index.de.md │ ├── _index.en.md │ ├── _index.es.md │ ├── _index.fr.md │ ├── _index.it.md │ ├── _index.ja.md │ ├── _index.nl.md │ ├── _index.pt.md │ ├── _index.zh.md │ ├── configure-parameters-store.de.md │ ├── configure-parameters-store.en.md │ ├── configure-parameters-store.es.md │ ├── configure-parameters-store.fr.md │ ├── configure-parameters-store.it.md │ ├── configure-parameters-store.ja.md │ ├── configure-parameters-store.nl.md │ ├── configure-parameters-store.pt.md │ ├── configure-parameters-store.zh.md │ ├── create-ecs-cluster.de.md │ ├── create-ecs-cluster.en.md │ ├── create-ecs-cluster.es.md │ ├── create-ecs-cluster.fr.md │ ├── create-ecs-cluster.it.md │ ├── create-ecs-cluster.ja.md │ ├── create-ecs-cluster.nl.md │ ├── create-ecs-cluster.pt.md │ ├── create-ecs-cluster.zh.md │ ├── create-efs.de.md │ ├── create-efs.en.md │ ├── create-efs.es.md │ ├── create-efs.fr.md │ ├── create-efs.it.md │ ├── create-efs.ja.md │ ├── create-efs.nl.md │ ├── create-efs.pt.md │ ├── create-efs.zh.md │ ├── create-loadbalancer.de.md │ ├── create-loadbalancer.en.md │ ├── create-loadbalancer.es.md │ ├── create-loadbalancer.fr.md │ ├── create-loadbalancer.it.md │ ├── create-loadbalancer.ja.md │ ├── create-loadbalancer.nl.md │ ├── create-loadbalancer.pt.md │ ├── create-loadbalancer.zh.md │ ├── create-service.de.md │ ├── create-service.en.md │ ├── create-service.es.md │ ├── create-service.fr.md │ ├── create-service.it.md │ ├── create-service.ja.md │ ├── create-service.nl.md │ ├── create-service.pt.md │ ├── create-service.zh.md │ ├── create-sg.de.md │ ├── create-sg.en.md │ ├── create-sg.es.md │ ├── create-sg.fr.md │ ├── create-sg.it.md │ ├── create-sg.ja.md │ ├── create-sg.nl.md │ ├── create-sg.pt.md │ ├── create-sg.zh.md │ ├── create-task-definition.de.md │ ├── create-task-definition.en.md │ ├── create-task-definition.es.md │ ├── create-task-definition.fr.md │ ├── create-task-definition.it.md │ ├── create-task-definition.ja.md │ ├── create-task-definition.nl.md │ ├── create-task-definition.pt.md │ └── create-task-definition.zh.md ├── database-migration │ ├── Create-Replication-Instance.de.md │ ├── Create-Replication-Instance.en.md │ ├── Create-Replication-Instance.es.md │ ├── Create-Replication-Instance.fr.md │ ├── Create-Replication-Instance.it.md │ ├── Create-Replication-Instance.ja.md │ ├── Create-Replication-Instance.nl.md │ ├── Create-Replication-Instance.zh.md │ ├── Create-Replication-instance.pt.md │ ├── Create-Source-and-Target-endpoints.de.md │ ├── Create-Source-and-Target-endpoints.en.md │ ├── Create-Source-and-Target-endpoints.es.md │ ├── Create-Source-and-Target-endpoints.fr.md │ ├── Create-Source-and-Target-endpoints.it.md │ ├── Create-Source-and-Target-endpoints.ja.md │ ├── Create-Source-and-Target-endpoints.nl.md │ ├── Create-Source-and-Target-endpoints.pt.md │ ├── Create-Source-and-Target-endpoints.zh.md │ ├── Create-and-run-Replication-task.de.md │ ├── Create-and-run-Replication-task.en.md │ ├── Create-and-run-Replication-task.es.md │ ├── Create-and-run-Replication-task.fr.md │ ├── Create-and-run-Replication-task.it.md │ ├── Create-and-run-Replication-task.ja.md │ ├── Create-and-run-Replication-task.nl.md │ ├── Create-and-run-Replication-task.pt.md │ ├── Create-and-run-Replication-task.zh.md │ ├── Create-target-DB.de.md │ ├── Create-target-DB.en.md │ ├── Create-target-DB.es.md │ ├── Create-target-DB.fr.md │ ├── Create-target-DB.it.md │ ├── Create-target-DB.ja.md │ ├── Create-target-DB.nl.md │ ├── Create-target-DB.pt.md │ ├── Create-target-DB.zh.md │ ├── Summary.de.md │ ├── Summary.en.md │ ├── Summary.es.md │ ├── Summary.fr.md │ ├── Summary.it.md │ ├── Summary.ja.md │ ├── Summary.nl.md │ ├── Summary.pt.md │ ├── Summary.zh.md │ ├── _index.de.md │ ├── _index.en.md │ ├── _index.es.md │ ├── _index.fr.md │ ├── _index.it.md │ ├── _index.ja.md │ ├── _index.nl.md │ ├── _index.pt.md │ ├── _index.zh.md │ ├── configure_source_database.de.md │ ├── configure_source_database.en.md │ ├── configure_source_database.es.md │ ├── configure_source_database.fr.md │ ├── configure_source_database.it.md │ ├── configure_source_database.ja.md │ ├── configure_source_database.nl.md │ ├── configure_source_database.pt.md │ ├── configure_source_database.zh.md │ ├── setup_network.de.md │ ├── setup_network.en.md │ ├── setup_network.es.md │ ├── setup_network.fr.md │ ├── setup_network.it.md │ ├── setup_network.ja.md │ ├── setup_network.nl.md │ ├── setup_network.pt.md │ └── setup_network.zh.md ├── elasticbeanstalk-migration │ ├── _index.en.md │ ├── create-eb-environment.en.md │ ├── prepare-the-source-code.en.md │ ├── review-eb-environment.en.md │ └── upload-source-code-to-s3.en.md ├── intro │ ├── _index.de.md │ ├── _index.en.md │ ├── _index.es.md │ ├── _index.fr.md │ ├── _index.it.md │ ├── _index.ja.md │ ├── _index.nl.md │ ├── _index.pt.md │ ├── _index.zh.md │ ├── at-aws-event.ja.md │ ├── migration-hub.de.md │ ├── migration-hub.en.md │ ├── migration-hub.es.md │ ├── migration-hub.fr.md │ ├── migration-hub.it.md │ ├── migration-hub.ja.md │ ├── migration-hub.nl.md │ ├── migration-hub.pt.md │ ├── migration-hub.zh.md │ ├── on-your-own.de.md │ ├── on-your-own.en.md │ ├── on-your-own.es.md │ ├── on-your-own.fr.md │ ├── on-your-own.it.md │ ├── on-your-own.ja.md │ ├── on-your-own.nl.md │ ├── on-your-own.pt.md │ ├── on-your-own.zh.md │ ├── review-deployment.de.md │ ├── review-deployment.en.md │ ├── review-deployment.es.md │ ├── review-deployment.fr.md │ ├── review-deployment.it.md │ ├── review-deployment.ja.md │ ├── review-deployment.nl.md │ ├── review-deployment.pt.md │ └── review-deployment.zh.md ├── optimization │ ├── _index.de.md │ ├── _index.en.md │ ├── _index.es.md │ ├── _index.fr.md │ ├── _index.it.md │ ├── _index.ja.md │ ├── _index.nl.md │ ├── _index.pt.md │ └── _index.zh.md ├── server-migration-overview │ ├── _index.en.md │ └── _index.fr.md └── server-migration │ ├── CE-Agent-Installation.de.md │ ├── CE-Agent-Installation.en.md │ ├── CE-Agent-Installation.es.md │ ├── CE-Agent-Installation.fr.md │ ├── CE-Agent-Installation.ja.md │ ├── CE-Agent-Installation.nl.md │ ├── CE-Agent-Installation.pt.md │ ├── CE-Agent-Installation.zh.md │ ├── CE-Agent-installation.it.md │ ├── CE-Blueprints.de.md │ ├── CE-Blueprints.en.md │ ├── CE-Blueprints.es.md │ ├── CE-Blueprints.fr.md │ ├── CE-Blueprints.it.md │ ├── CE-Blueprints.ja.md │ ├── CE-Blueprints.nl.md │ ├── CE-Blueprints.pt.md │ ├── CE-Blueprints.zh.md │ ├── CE-Configuration.de.md │ ├── CE-Configuration.en.md │ ├── CE-Configuration.es.md │ ├── CE-Configuration.fr.md │ ├── CE-Configuration.it.md │ ├── CE-Configuration.ja.md │ ├── CE-Configuration.nl.md │ ├── CE-Configuration.pt.md │ ├── CE-Configuration.zh.md │ ├── CE-Cutover.de.md │ ├── CE-Cutover.en.md │ ├── CE-Cutover.es.md │ ├── CE-Cutover.fr.md │ ├── CE-Cutover.it.md │ ├── CE-Cutover.ja.md │ ├── CE-Cutover.nl.md │ ├── CE-Cutover.pt.md │ ├── CE-Cutover.zh.md │ ├── CE-Webserver-config.de.md │ ├── CE-Webserver-config.en.md │ ├── CE-Webserver-config.es.md │ ├── CE-Webserver-config.fr.md │ ├── CE-Webserver-config.it.md │ ├── CE-Webserver-config.ja.md │ ├── CE-Webserver-config.nl.md │ ├── CE-Webserver-config.pt.md │ ├── CE-Webserver-config.zh.md │ ├── _index.de.md │ ├── _index.en.md │ ├── _index.es.md │ ├── _index.fr.md │ ├── _index.it.md │ ├── _index.ja.md │ ├── _index.nl.md │ ├── _index.pt.md │ └── _index.zh.md ├── layouts ├── index.json └── partials │ └── custom-footer.html ├── static ├── app_mig_serv │ ├── complete_testing.en.png │ ├── configure_app_webserver_ip.en.png │ ├── data_replication_healthy.en.png │ ├── database_update_security_group.en.png │ ├── disk_settings.en.png │ ├── edit_webserver_inbound_rules.en.png │ ├── ee_credentials.en.png │ ├── finalize_cutover.en.png │ ├── how-it-works.en.jpg │ ├── install_agent.en.png │ ├── install_agent_credentials.en.png │ ├── launch_cutover.en.png │ ├── launch_cutover_popup.en.png │ ├── launch_settings_about.en.png │ ├── launch_settings_general.en.png │ ├── launch_settings_general_disable_rightsizing.en.png │ ├── launch_settings_select.en.png │ ├── launch_status_launched.en.png │ ├── launch_template_new_version.en.png │ ├── launch_template_select_instance.en.png │ ├── launch_template_select_subnet.en.png │ ├── launch_template_tags.en.png │ ├── launch_template_update_version.en.png │ ├── launch_template_update_version_popup.en.png │ ├── launch_test_instance.en.png │ ├── manage_tags_1.en.png │ ├── migration_dashboard.en.png │ ├── ready_for_cutover.en.png │ ├── ready_for_cutover_confirm.png │ ├── replication_finished.en.png │ ├── replication_settings.en.png │ ├── select_server.en.png │ ├── server_info.en.png │ ├── server_info_recommendation.en.png │ ├── setup.en.png │ ├── source_servers.en.png │ ├── testing.en.png │ ├── testing_job_details.en.png │ └── testing_job_id.en.png ├── beanstalk │ ├── eb-app-health.png │ ├── eb-app-settings.png │ ├── eb-app-version.png │ ├── eb-create-app.png │ ├── eb-create-env-console.png │ ├── eb-env-health.png │ ├── eb-env-overview.png │ ├── eb-environments.png │ ├── eb-monitoring.png │ ├── eb-process.png │ ├── eb-rds-connectivity.png │ ├── eb-rds-sg-rules.png │ ├── eb-rds-sg.png │ ├── eb-s3-settings.png │ ├── eb-settings-network-details.png │ ├── eb-settings-network.png │ ├── eb-settings-software-details.png │ ├── eb-settings-software.png │ ├── s3-create-sourcecodebucket.png │ ├── s3-object-url.png │ └── source-bundle-in-s3.png ├── ce │ ├── CE-Agent-install-commands.ja.png │ ├── CE-Agent-install-detailed.ja.png │ ├── CE-Agent-install-detailed.png │ ├── CE-Agent-install-detailed.zh.png │ ├── CE-Agent-install.png │ ├── CE-BluePrints.png │ ├── CE-Cutover.png │ ├── CE-Cutover.zh.png │ ├── CE-Replication-setting.png │ ├── CE-configure-AWS-Cred.png.png │ ├── CE-console-credentials.png │ ├── CE-create-project-1.ja.png │ ├── CE-create-project-2.ja.png │ ├── CE-credentials.png │ ├── CE-job-progress.png │ ├── CE-job-progress.zh.png │ ├── CE-login.png │ ├── CE-server-progress.png │ ├── CE-server-progress.zh.png │ ├── Centos-Ip-details.png │ ├── Centos-pem.png │ ├── ce-blueprint-details.ja.png │ ├── ce-blueprint-details.png │ ├── ce-blueprint-details.zh.png │ ├── ce-home.png │ ├── ce-home.zh.png │ ├── ce-self-service-accesskeys.ja.png │ ├── ce-self-service-accesskeys.png │ ├── ce-self-service-accesskeys.zh.png │ ├── database_update_security_group.ja.png │ ├── database_update_security_group.png │ ├── database_update_security_group.zh.png │ ├── edit_webserver_inbound_rules.ja.png │ ├── edit_webserver_inbound_rules.png │ ├── edit_webserver_inbound_rules.zh.png │ ├── webserver-self-paced-info.ja.png │ ├── webserver-self-paced-info.png │ ├── webserver-self-paced-info.zh.png │ ├── webserver_details.ja.png │ ├── webserver_details.png │ └── webserver_details.zh.png ├── cleanup │ ├── ce-stop-remove-from-console.eng.png │ ├── ce-stop-remove-from-console.zh.png │ ├── db-delete-confirm.en.png │ ├── db-delete-confirm.ja.png │ ├── db-delete-confirm.zh.png │ ├── db-remove-deletion-protection.en.png │ ├── db-remove-deletion-protection.ja.png │ ├── db-remove-deletion-protection.zh.png │ ├── dms-dashboard-final.en.png │ ├── dms-dashboard-final.ja.png │ └── dms-dashboard-final.zh.png ├── db-mig │ ├── 1.ja.png │ ├── 1.png │ ├── 1.zh.png │ ├── 3_db.ja.png │ ├── 3_db.png │ ├── 3_db.zh.png │ ├── 4_db.ja.png │ ├── 4_db.png │ ├── 4_db.zh.png │ ├── 5_db.ja.png │ ├── 5_db.png │ ├── 5_db.zh.png │ ├── 6_2_db.ja.png │ ├── 6_2_db.png │ ├── 6_2_db.zh.png │ ├── 6_db.ja.png │ ├── 6_db.png │ ├── 6_db.zh.png │ ├── 7_db.png │ ├── 8_2_db.ja.png │ ├── 8_2_db.png │ ├── 8_2_db.zh.png │ ├── 8_db.ja.png │ ├── 8_db.png │ ├── 8_db.zh.png │ ├── Create-task-1.ja.png │ ├── Create-task-1.png │ ├── Create-task-1.zh.png │ ├── Create-task-3.ja.png │ ├── Create-task-3.png │ ├── Create-task-3.zh.png │ ├── DMS-overview.png │ ├── DMS-overview.zh.png │ ├── Replication-instance-create.ja.png │ ├── Replication-instance-create.png │ ├── Replication-instance-create.zh.png │ ├── advanced-security.ja.png │ ├── advanced-security.png │ ├── advanced-security.zh.png │ ├── bin-log-verificaion.png │ ├── create-db-select-template.en.png │ ├── create-db-select-template.ja.png │ ├── create-db-select-template.zh.png │ ├── create-db-sg.ja.png │ ├── create-task-2.ja.png │ ├── create-task-2.png │ ├── create-task-2.zh.png │ ├── create-task-4.ja.png │ ├── create-task-4.png │ ├── create-task-4.zh.png │ ├── db-server-ssh-event.png │ ├── db-server-ssh-self-paced.ja.png │ ├── db-server-ssh-self-paced.png │ ├── db-server-ssh-self-paced.zh.png │ ├── db-sg-update.png │ ├── db-subnet-group.en.png │ ├── db-subnet-group.ja.png │ ├── db-subnet-group.zh.png │ ├── replication-instance-conf.ja.png │ ├── replication-instance-conf.png │ ├── replication-instance-conf.zh.png │ ├── ri-network-conf.png │ ├── ri-network-conf.zh.png │ ├── ri-sg.ja.png │ ├── ri-sg.png │ ├── ri-sg.zh.png │ ├── security-group-inbound-rule.en.png │ ├── security-group-inbound-rule.ja.png │ ├── security-group-inbound-rule.zh.png │ ├── security-group-new.en.png │ ├── source-endpoint.ja.png │ ├── source-endpoint.png │ ├── source-endpoint.zh.png │ ├── subnet-group.ja.png │ ├── subnet-group.png │ ├── subnet-group.zh.png │ ├── test-source-endpoint.ja.png │ ├── test-source-endpoint.png │ └── test-source-endpoint.zh.png ├── ecs │ ├── add-container-details.ja.png │ ├── add-container-details.png │ ├── add-container-details.zh.png │ ├── add-container.ja.png │ ├── add-container.png │ ├── add-container.zh.png │ ├── add-volume.ja.png │ ├── add-volume.png │ ├── add-volume.zh.png │ ├── awsvpc-trunking.png │ ├── cloudwatch-insights.png │ ├── configure-cluster.ja.png │ ├── configure-cluster.png │ ├── configure-cluster.zh.png │ ├── configure-lb.ja.png │ ├── configure-lb.png │ ├── configure-lb.zh.png │ ├── configure-network-svc.ja.png │ ├── configure-network-svc.png │ ├── configure-network-svc.zh.png │ ├── configure-routing.ja.png │ ├── configure-routing.png │ ├── configure-routing.zh.png │ ├── configure-service.ja.png │ ├── configure-service.png │ ├── configure-service.zh.png │ ├── configure-task-def.ja.png │ ├── configure-task-def.png │ ├── configure-task-def.zh.png │ ├── container-lb-details.ja.png │ ├── container-lb-details.png │ ├── container-lb-details.zh.png │ ├── container-lb.ja.png │ ├── container-lb.png │ ├── container-lb.zh.png │ ├── create-cluster.ja.png │ ├── create-cluster.png │ ├── create-cluster.zh.png │ ├── create-ecs-sg.png │ ├── create-efs-configure-mount-target.zh.png │ ├── create-efs-configure-mount-targets.en.png │ ├── create-efs-configure-mount-targets.ja.png │ ├── create-efs-file-system-id.en.png │ ├── create-efs-file-system-id.ja.png │ ├── create-efs-file-system-id.zh.png │ ├── create-efs-mount-target.en.png │ ├── create-efs-mount-target.ja.png │ ├── create-efs-mount-target.zh.png │ ├── create-efs-name.en.png │ ├── create-efs-name.ja.png │ ├── create-efs-name.zh.png │ ├── create-efs-select.en.png │ ├── create-efs-select.ja.png │ ├── create-efs-select.zh.png │ ├── create-efs-sg.png │ ├── create-efs.ja.png │ ├── create-efs.png │ ├── create-efs.zh.png │ ├── create-lb-sg.ja.png │ ├── create-lb-sg.png │ ├── create-lb-sg.zh.png │ ├── create-lb.ja.png │ ├── create-lb.png │ ├── create-lb.zh.png │ ├── create-service.ja.png │ ├── create-service.png │ ├── create-service.zh.png │ ├── create-task-def.ja.png │ ├── create-task-def.png │ ├── create-task-def.zh.png │ ├── create-task-sg.png │ ├── ecs-ec2type-arch.png │ ├── ecs-networking.png │ ├── ecs-overview.png │ ├── edit-ecs-sg.png │ ├── edit-efs-sg.ja.png │ ├── edit-efs-sg.png │ ├── edit-efs-sg.zh.png │ ├── edit-lb-sg.ja.png │ ├── edit-lb-sg.png │ ├── edit-lb-sg.zh.png │ ├── edit-task-sg-1.png │ ├── edit-task-sg.ja.png │ ├── edit-task-sg.png │ ├── edit-task-sg.zh.png │ ├── efs-details.ja.png │ ├── efs-details.png │ ├── efs-details.zh.png │ ├── efs-enc.ja.png │ ├── efs-enc.png │ ├── efs-enc.zh.png │ ├── efs-mount.ja.png │ ├── efs-mount.png │ ├── efs-mount.zh.png │ ├── efs-review.ja.png │ ├── efs-review.png │ ├── efs-review.zh.png │ ├── environment-variables.ja.png │ ├── environment-variables.png │ ├── environment-variables.zh.png │ ├── overview-fargate.png │ ├── parameter-details.ja.png │ ├── parameter-details.png │ ├── parameter-details.zh.png │ ├── service-discovery.ja.png │ ├── service-discovery.png │ ├── service-discovery.zh.png │ ├── storage-logging.ja.png │ ├── storage-logging.png │ ├── storage-logging.zh.png │ ├── svc-autoscaling-policy.ja.png │ ├── svc-autoscaling-policy.png │ ├── svc-autoscaling-policy.zh.png │ ├── svc-autoscaling.ja.png │ ├── svc-autoscaling.png │ ├── svc-autoscaling.zh.png │ ├── svc-lb.ja.png │ ├── svc-lb.png │ ├── svc-lb.zh.png │ ├── task-size.ja.png │ ├── task-size.png │ ├── task-size.zh.png │ ├── update-db-sg.ja.png │ ├── update-db-sg.png │ ├── update-db-sg.zh.png │ ├── volumes.ja.png │ ├── volumes.png │ └── volumes.zh.png ├── images │ ├── apn-logo.jpg │ └── aws-open-source.jpg ├── intro │ ├── cloudformation-launch-stack.png │ ├── cloudformation-step0.en.png │ ├── cloudformation-step1.en.png │ ├── cloudformation-step1.ja.png │ ├── cloudformation-step1.zh.png │ ├── cloudformation-step2.en.png │ ├── cloudformation-step2.ja.png │ ├── cloudformation-step2.zh.png │ ├── cloudformation-step4.en.png │ ├── cloudformation-step4.ja.png │ ├── cloudformation-step4.zh.png │ ├── dashboard-aws-console.png │ ├── dashboard-console-login.png │ ├── dashboard-hash.png │ ├── migrate-with-aws.png │ ├── migration-hub-choose-home-region.ja.png │ ├── migration-hub-choose-home-region.png │ ├── migration-hub-choose-home-region.zh.png │ ├── migration-hub-connect-dms-connected.ja.png │ ├── migration-hub-connect-dms-connected.png │ ├── migration-hub-connect-dms-connected.zh.png │ ├── migration-hub-connect-dms.ja.png │ ├── migration-hub-connect-dms.png │ ├── migration-hub-connect-dms.zh.png │ ├── migration-hub-dashboard.ja.png │ ├── migration-process.png │ ├── option-aws-led.png │ ├── option-self-paced.png │ ├── self-service-env-awsconsole-info.en.png │ ├── self-service-env-awsconsole-info.ja.png │ ├── self-service-env-awsconsole-info.zh.png │ ├── self-service-env-cli-info.en.png │ ├── self-service-env-cli-info.ja.png │ ├── self-service-env-cli-info.zh.png │ ├── source-env.png │ ├── source-env.zh.png │ ├── src-env-output.png │ ├── target-env.png │ ├── target-vpc.ja.png │ ├── target-vpc.png │ └── target-vpc.zh.png ├── opt │ └── aws-ref-arch.png └── server_migration_overview │ └── migration_options.png └── themes └── learn ├── .editorconfig ├── .gitignore ├── .grenrc.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── archetypes ├── chapter.md └── default.md ├── i18n ├── ar.toml ├── de.toml ├── en.toml ├── es.toml ├── fr.toml ├── hi.toml ├── id.toml ├── nl.toml ├── pt.toml └── tr.toml ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── list.html │ └── single.html ├── index.html ├── index.json ├── partials │ ├── custom-comments.html │ ├── custom-footer.html │ ├── custom-header.html │ ├── favicon.html │ ├── footer.html │ ├── header.html │ ├── logo.html │ ├── menu-footer.html │ ├── menu.html │ ├── meta.html │ ├── search.html │ ├── tags.html │ └── toc.html └── shortcodes │ ├── attachments.html │ ├── button.html │ ├── children.html │ ├── expand.html │ ├── img.html │ ├── mermaid.html │ ├── notice.html │ ├── ref.html │ ├── relref.html │ ├── siteparam.html │ └── siteurl.html ├── static ├── css │ ├── atom-one-dark-reasonable.css │ ├── auto-complete.css │ ├── featherlight.min.css │ ├── fontawesome-all.min.css │ ├── hugo-theme.css │ ├── hybrid.css │ ├── nucleus.css │ ├── perfect-scrollbar.min.css │ ├── tags.css │ ├── theme-aws.css │ ├── theme-blue.css │ ├── theme-green.css │ ├── theme-red.css │ └── theme.css ├── fonts │ ├── Inconsolata.eot │ ├── Inconsolata.svg │ ├── Inconsolata.ttf │ ├── Inconsolata.woff │ ├── Novecentosanswide-Normal-webfont.eot │ ├── Novecentosanswide-Normal-webfont.svg │ ├── Novecentosanswide-Normal-webfont.ttf │ ├── Novecentosanswide-Normal-webfont.woff │ ├── Novecentosanswide-Normal-webfont.woff2 │ ├── Novecentosanswide-UltraLight-webfont.eot │ ├── Novecentosanswide-UltraLight-webfont.svg │ ├── Novecentosanswide-UltraLight-webfont.ttf │ ├── Novecentosanswide-UltraLight-webfont.woff │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ ├── Work_Sans_200.eot │ ├── Work_Sans_200.svg │ ├── Work_Sans_200.ttf │ ├── Work_Sans_200.woff │ ├── Work_Sans_200.woff2 │ ├── Work_Sans_300.eot │ ├── Work_Sans_300.svg │ ├── Work_Sans_300.ttf │ ├── Work_Sans_300.woff │ ├── Work_Sans_300.woff2 │ ├── Work_Sans_500.eot │ ├── Work_Sans_500.svg │ ├── Work_Sans_500.ttf │ ├── Work_Sans_500.woff │ └── Work_Sans_500.woff2 ├── images │ ├── clippy.svg │ └── logo.png ├── js │ ├── auto-complete.js │ ├── clipboard.min.js │ ├── featherlight.min.js │ ├── highlight.pack.js │ ├── html5shiv-printshiv.min.js │ ├── hugo-learn.js │ ├── jquery-3.3.1.min.js │ ├── jquery.sticky.js │ ├── learn.js │ ├── lunr.min.js │ ├── modernizr.custom-3.6.0.js │ ├── perfect-scrollbar.jquery.min.js │ ├── perfect-scrollbar.min.js │ └── search.js └── mermaid │ ├── mermaid.css │ ├── mermaid.dark.css │ ├── mermaid.forest.css │ └── mermaid.js └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | workshop/public/ 2 | .aws-sam 3 | .idea/** 4 | .DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software is furnished to do so. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 10 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 11 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 12 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 13 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 14 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 15 | 16 | -------------------------------------------------------------------------------- /metadata.yml: -------------------------------------------------------------------------------- 1 | #name - DNS-friendly name for the workshop. This will be used when generating the hosting URL (ie. https://my-first-workshop.workshops.aws/) 2 | name: Migration and Modernization Workshop Guide 3 | #title - The title of your workshop 4 | title: Migration and Modernization Workshop Guide 5 | #description - A short description that will be displayed in search results 6 | description: Migrating BuyMyUnicorns.com e-commerce web site to AWS! 7 | #categories - Refer to official AWS categories covered by the workshop content here 8 | categories: 9 | - Application Migration 10 | - Modernization 11 | #services - Refer to the official AWS service names covered by the workshop content here 12 | services: 13 | - AWS Database Migration Service 14 | - CloudEndure 15 | - EC2, RDS, Autoscaling, CloudFront, CloudWatch, ..etc 16 | #level - Approximate skill level needed for this workshop 17 | level: 200 18 | #duration - Estimated duration in minutes 19 | duration: 240 20 | #cost - Cost in USD. If the content is offered without cost, enter 0 21 | cost: 0 22 | #author - Amazon alias of the primary author of the content 23 | author: @omrahmed, @lmigdal 24 | #audience - Names of the personas associated with this workshop 25 | audience: 26 | - IT Professional 27 | - Developer 28 | -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- 1 | Code used to build the source environment for https://application-migration-with-aws.workshop.aws/. 2 | 3 | Details of what is deployed can be found at https://application-migration-with-aws.workshop.aws/en/intro/on-your-own.html. -------------------------------------------------------------------------------- /resources/scripts/database_ubuntu.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # install mysql 4 | sudo apt update -y 5 | sudo apt install mysql-server -y 6 | sudo sed -i 's/127.0.0.1/0.0.0.0/g' /etc/mysql/mysql.conf.d/mysqld.cnf 7 | sudo service mysql restart 8 | 9 | # create symlink for python 10 | sudo ln -s /usr/bin/python3 /usr/bin/python 11 | 12 | # configure mysql 13 | mysql -u root <<'EOF' 14 | ALTER USER 'root'@'localhost' IDENTIFIED BY 'AWSRocksSince2006'; 15 | DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1'); 16 | DELETE FROM mysql.user WHERE User=''; 17 | DELETE FROM mysql.db WHERE Db='test' OR Db='test_%'; 18 | CREATE USER 'wordpress-user' IDENTIFIED BY 'AWSRocksSince2006'; 19 | CREATE DATABASE `wordpress-db`; 20 | GRANT ALL PRIVILEGES ON `wordpress-db`.* TO "wordpress-user"; 21 | FLUSH PRIVILEGES; 22 | EOF -------------------------------------------------------------------------------- /resources/scripts/uploads.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/resources/scripts/uploads.zip -------------------------------------------------------------------------------- /resources/src/create_key_pair/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/resources/src/create_key_pair/requirements.txt -------------------------------------------------------------------------------- /resources/src/get_ssh_key_from_ssm/index.py: -------------------------------------------------------------------------------- 1 | import boto3 2 | 3 | KEY_NAME = "linux_servers_ssh_key" 4 | 5 | 6 | def get_ssh_pem(AWS_REGION, sts_session): 7 | """ Return parameter from SSM Parameter Store""" 8 | ssm_client = sts_session.client("ssm") 9 | ssh_key = ssm_client.get_parameter(Name=KEY_NAME)['Parameter']['Value'] 10 | return ssh_key 11 | 12 | 13 | def lambda_handler(event, context): 14 | """ Get SSM parameter and return it in HTTP-ready response """ 15 | session = boto3.session.Session() 16 | 17 | return { 18 | "statusCode": 200, 19 | "body": get_ssh_pem('us-east-1', session), 20 | "headers": {"content-type": "text/plain"} 21 | } 22 | -------------------------------------------------------------------------------- /resources/src/get_ssh_key_from_ssm/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/resources/src/get_ssh_key_from_ssm/requirements.txt -------------------------------------------------------------------------------- /resources/static/cloudformation-launch-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/resources/static/cloudformation-launch-stack.png -------------------------------------------------------------------------------- /resources/static/migration_gameday_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/resources/static/migration_gameday_logo_small.png -------------------------------------------------------------------------------- /workshop/content/_index.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = 2019-10-21T09:54:54+02:00 3 | weight = 5 4 | +++ 5 | 6 | migrate with AWS 7 | 8 | アマゾン ウェブ サービス (AWS) では、数百万以上のアクティブなお客様との経験と、 9 | あらゆる年代、業種、地域の組織のクラウド移行を支援してきた経験に基づいて、 10 | ワークロードをクラウドに移行するための標準的なプロセスを形成してきました。 11 | このプロセスは、一般的に **1) 評価**、**2) モビライズ**、**3) 移行とモダナイゼーション**の3つのフェーズに分けることができます: 12 | 13 | 14 | 15 | 本ハンズオンでは、**移行とモダナイゼーション**のフェーズに焦点を当て、架空のアプリケーションを AWS クラウドに移行する方法を学びます: 16 | 17 | - **AWS Database Migration Service** を使ったデータベースの **Re-Platform** 18 | - **CloudEndure Migration** を使った Web サーバーの **Re-Host** 19 | - **Amazon Elastic Container Service** で稼働するコンテナへの移行による、Web サーバーの**モダナイゼーション** 20 | - オプション:**AWS Well-Architected フレームワーク**に沿った、アーキテクチャの**運用上の優秀性**、**セキュリティ**、**パフォーマンス効率**の向上と**コスト**の最適化 -------------------------------------------------------------------------------- /workshop/content/_index.zh.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "AWS 应用迁移研讨会" 4 | date = 2020-06-08T09:54:54+08:00 5 | weight = 1 6 | +++ 7 | migrate with AWS 8 | 9 | 我们知道,每次迁移都是不同的;但是,根据我们拥有超过 100 万活跃客户的经验,并帮助所有阶段、行业和地域的组织迁移到云,我们看到了标准化迁移流程正在形成。这一流程一般可分为三个阶段:**1) 评估,2) 调用和 3) 迁移和现代化**。 10 | 11 | 12 | 13 | 14 | 在本次研讨会中,我们将重点介绍 **迁移和现代化** 阶段,您将通过以下方式学习如何将虚构应用程序迁移到 AWS 云: 15 | 16 | - 使用 AWS Database Migration Service **重新平台化(Re-platforming)** 数据库 17 | - 使用 AWS CloudEndure Migration **重新托管(Re-hosting)** Web 服务器 18 | - 将 Web 服务器进行 **现代化**,以容器方式运行到 Amazon Elastic Container Service 上 19 | - (可选)通过遵循 良好架构(Well-Architected)框架 改进部署架构的 **卓越运营**,**安全性**,**性能效率** 和 **成本优化** 20 | -------------------------------------------------------------------------------- /workshop/content/container-migration/configure-parameters-store.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "配置参数存储" 3 | weight = 30 4 | +++ 5 | 6 | 由于我们将使用官方的 WordPress 容器镜像与 RDS 数据库,我们将需要提供数据库凭据,数据库名称和服务器详细信息给 WordPress 配置。 7 | 8 | 实现这一目标的最佳方法是在 **AWS Systems Manager** 参数存储中管理这些参数,而不是将它们存储在容器镜像或 ECS 任务定义中。 9 | 10 | 在 **AWS 控制台** 中,选择 **服务**,然后选择 **Systems Manger**,然后点击左侧菜单中的 **Parameter Store**。 11 | 12 | 单击 **创建参数** 按钮,然后输入 **参数详细信息**(名称、说明、类型和值),如下表所示。 13 | 14 | ![parameter-details](/ecs/parameter-details.zh.png) 15 | 16 | 您需要重复上述步骤创建所有 4 个参数: 17 | 18 | 19 | | 参数 | 类型 | 值 | 20 | | ---------------------- | ---------------- |--------------------------------| 21 | | DB_HOST | String | RDS 终端节点 | 22 | | DB_NAME | String | 目标数据库名称 (wordpress-db) | 23 | | DB_USERNAME | String | RDS 数据库用户名 | 24 | | DB_PASSWORD | SecureString | RDS 数据库密码 | 25 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.de.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Erstellen Sie einen Amazon ECS Cluster" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Erstellen Sie einen **Amazon ECS (Elastic Container Service)** Cluster 8 | 9 | Bei **AWS console**, besuchen Sie **Services**, und wählen Sie **ECS** aus 10 | und dann klicken Sie auf die Schaltfläche **Create Cluster** darauf. 11 | 12 | Wählen Sie **Networking only** als die Cluster-Vorlage (cluster template) 13 | und klicken Sie auf die Schaltfläche **Next step** darauf. 14 | 15 | ![create-cluster](/ecs/create-cluster.png) 16 | 17 | Geben Sie bei Cluster-Konfiguration einen Namen des Clusters ein (z. B. Einhörner-Cluster) 18 | und aktivieren Sie das Kontrollkästchen **Container Insights aktivieren**, 19 | um die **CloudWach-Container-Insights** für detailliertere Metriken zu aktivieren, 20 | die über **Amazon CloudWatch** bereitgestellt werden. 21 | 22 | ![configure-cluster](/ecs/configure-cluster.png) 23 | 24 | Klicken Sie abschließend auf die Schaltfläche **Create** darauf, 25 | um den Amazon ECS-Cluster zu erstellen. 26 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Create an Amazon ECS cluster" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Create Amazon ECS cluster 8 | 9 | From **AWS console**, go to **Services**, select **ECS** and then click **Create Cluster** button 10 | 11 | Select **Networking only** for cluster template and click **Next step**. 12 | 13 | ![create-cluster](/ecs/create-cluster.png) 14 | 15 | In cluster configuration section, provide a name of the cluster (e.g. unicorns-cluster), check the "Enable Container Insights" box to enable the **CloudWach container insights** for more in-depth metrics provided through **Amazon CloudWatch**. 16 | 17 | ![configure-cluster](/ecs/configure-cluster.png) 18 | 19 | 20 | Finally press the **Create** button to create the Amazon ECS cluster. 21 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.es.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Crear un cluster de Amazon ECS" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Create Amazon ECS cluster 8 | 9 | Desde la **Consola de AWS**, vete a **Servicios (Services)**, selecciona **ECS** y despues haz click en el boton **Crear Cluster (Create Cluster)** 10 | 11 | Selecciona **Solo Red (Networking only)** para la plantilla del cluster y haz click en el **Proximo Paso (Next step)**. 12 | 13 | ![create-cluster](/ecs/create-cluster.png) 14 | 15 | En la seccion de la configuración del cluster, proporciona un nombre al cluster (por ejemplo unicorns-cluster), marca el check de la caja "Habilitar la vista sobre contenedores" ("Enable Container Insights") para habilitar las **vistas de contenedores de CloudWach (CloudWach container insights)** para ver mas metricas en detalles proporcionadas por **Amazon CloudWatch**. 16 | 17 | ![configure-cluster](/ecs/configure-cluster.png) 18 | 19 | 20 | Finalmente pulsa el boton **Crear (Create)** para crear el cluster de Amazon ECS. 21 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Création d'un cluster Amazon ECS" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Créer le cluster Amazon ECS 8 | 9 | A partir de la **console AWS**, allez dans **Services**, Sélectionnez **ECS** puis cliquez sur le bouton **Create Cluster** 10 | 11 | Sélectionnez **Networking only** pour "cluster template" et cliquez sur **Next step**. 12 | 13 | ![create-cluster](/ecs/create-cluster.png) 14 | 15 | Dans la section "cluster configuration" , donnez un nom au cluster (ex : unicorns-cluster), cochez la boîte "Enable Container Insights" pour activer **CloudWach container insights** afin d'obtenir une métrologie plus détaillée dans **Amazon CloudWatch**. 16 | 17 | ![configure-cluster](/ecs/configure-cluster.png) 18 | 19 | 20 | A la fin, pressez le bouton **Create** pour créer le cluster Amazon ECS. 21 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.it.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Crea un Amazon ECS cluster" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Crea un Amazon ECS cluster 8 | 9 | Dalla **AWS console**, andare su **Services**, selezionare **ECS** e quindi seleziona il bottone **Create Cluster** 10 | 11 | Seleziona **Networking only** per il template del cluster e seleziona **Next step**. 12 | 13 | ![create-cluster](/ecs/create-cluster.png) 14 | 15 | Nella sezione di configurazione del cluster, fornire un nome del cluster (ad es. Unicorns-cluster), selezionare la casella "Enable Container Insights" e abilita i **CloudWach container insights** per metriche più approfondite fornite attraverso **Amazon CloudWatch**. 16 | 17 | ![configure-cluster](/ecs/configure-cluster.png) 18 | 19 | 20 | Infine, premi il pulsante **Create** per creare il cluster Amazon ECS. 21 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Amazon ECS クラスターの作成" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Amazon Elastic Container Service (ECS) クラスターの作成 8 | 9 | マネジメントコンソール上部の **「サービス」** から **Elastic Container Service** のページを開き、左のメニューから **「クラスター」** を選択します。クラスターの一覧が表示されたら、**「クラスターの作成」** ボタンをクリックします。 10 | 11 | 「ステップ 1: クラスターテンプレートの選択 」では、 **「ネットワーキングのみ」** を選択し、**「次のステップ」** をクリックします。 12 | 13 | ![create-cluster](/ecs/create-cluster.ja.png) 14 | 15 | 「ステップ 2: クラスターの設定」では、**クラスター名**(例:unicorn-cluster)を入力し、**「Container Insights を有効にする」** ボックスにチェックを入れることで、Amazon CloudWatch よりも詳細なメトリクスを提供する **CloudWatch Container Insights** を有効にします。 16 | 17 | ![configure-cluster](/ecs/configure-cluster.ja.png) 18 | 19 | 最後に **「作成」** ボタンを押して Amazon ECS クラスターを作成します。 20 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.nl.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Creëer een Amazon ECS cluster" 3 | weight = 40 4 | +++ 5 | 6 | ### Creëer een Amazon ECS cluster 7 | 8 | In het **AWS console**, ga naar **Services**, selecteer **ECS** en klik dan op de **Create Cluster** knop. 9 | 10 | Selecteer **Networking only** als cluster template en klik dan op **Next step**. 11 | 12 | ![create-cluster](/ecs/create-cluster.png) 13 | 14 | In de cluster configuratie sectie, vul een naam in voor de cluster (b.v. unicorns-cluster), selecteer de **Enable Container Insights** optie voor het activeren van **CloudWach container insights** voor het verkrijgen van dieper inzicht via **Amazon CloudWatch**. 15 | 16 | ![configure-cluster](/ecs/configure-cluster.png) 17 | 18 | Tot slot, druk op de **Create** knop om het Amazon ECS cluster aan te maken. -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.pt.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Crie um Amazon ECS cluster" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### Crie um Amazon ECS cluster 8 | 9 | Na **AWS console**, vá até **Services**, selecione **ECS** e então clique no botão **Create Cluster** 10 | 11 | Selecione **Networking only** como cluster template e clique **Next step**. 12 | 13 | ![create-cluster](/ecs/create-cluster.png) 14 | 15 | Na seção de cluster configuration, dê um nome para o cluster (ex. unicorns-cluster), marque a caixa "Enable Container Insights" para habilitar os **CloudWach container insights** e obter métricas mais profundas através do **Amazon CloudWatch**. 16 | 17 | ![configure-cluster](/ecs/configure-cluster.png) 18 | 19 | 20 | Finalmente pressione **Create** para criar o Amazon ECS cluster. 21 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-ecs-cluster.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "创建 Amazon ECS 集群" 3 | weight = 40 4 | +++ 5 | 6 | 7 | ### 创建 Amazon ECS 集群 8 | 9 | 在 **AWS 控制台** 中,转到 **服务**,选择 **ECS (Elastic Container Service)**,然后单击 **创建集群**。(如果您没有看到 **创建集群** 按钮,请点击左边菜单中的 **集群**) 10 | 11 | 为集群模板选择 **仅限联网**,然后单击 **下一步**。 12 | 13 | ![create-cluster](/ecs/create-cluster.zh.png) 14 | 15 | 在集群配置部分,提供集群的名称(例如,unicorns-cluster),选中 “启用 Container Insights” 复选框以启用 ** CloudWach Container Insights**,了解通过 **Amazon CloudWatch** 提供的更详细的指标。 16 | 17 | ![configure-cluster](/ecs/configure-cluster.zh.png) 18 | 19 | 20 | 最后点击 **创建** 完成 Amazon ECS 集群的创建。 21 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Create an AWS Elastic Load Balancer" 3 | weight = 35 4 | +++ 5 | 6 | 7 | From **AWS Console**, select **Services**, **EC2** and then **Load Balancers** 8 | 9 | Click **Create Load Balancer** button and **Application Load Balancer** as indicated below: 10 | 11 | ![create-loadbalancer](/ecs/create-lb.png) 12 | 13 | In the **1. Configure Load Balancer** step, enter the load balancer **Name** (e.g. unicorn-lb), choose the VPC that you use (e.g TargetVPC) and select your public subnets for at least two subnets (public-a, public-b) as below: 14 | 15 | ![configure-loadbalancer](/ecs/configure-lb.png) 16 | 17 | In the **3. Configure Security Group** settings step, choose the LB-SG security group. 18 | 19 | In the **4. Configure Routing** step, select **New target group** in the **Target group** and provide a name for the target group (e.g. unicorn-tg). For the **Target type**, select **IP**, leave the default for the other fields and click **Next: Register Targets** 20 | 21 | ![configure-routing](/ecs/configure-routing.png) 22 | 23 | Leave the default of register targets, click **Next: Review** and then click **Create** to create the load balancer. 24 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Création d'un Elastic Load Balancer AWS" 3 | weight = 35 4 | +++ 5 | 6 | 7 | A partir de **AWS Console**, sélectionnez **Services**, **EC2** puis **Load Balancers** 8 | 9 | Cliquez sur le bouton **Create Load Balancer** et **Application Load Balancer** comme indiqué ci-dessous : 10 | 11 | ![create-loadbalancer](/ecs/create-lb.png) 12 | 13 | Dans l'étape **1. Configurer le load balancer**, entrez le **Nom** du "load balancer" (ex : unicorn-lb), choisissez le VPC que vous utilisez (ex : TargetVPC) et sélectionnez au minimum deux subnets public (public-a, public-b) comme ci-dessous : 14 | 15 | ![configure-loadbalancer](/ecs/configure-lb.png) 16 | 17 | Dans l'étape de configuration **3. Configurer le "Security Group"** , choisissez le "security group" LB-SG. 18 | 19 | Dans l'étape **4. Configurer le routage** , sélectionnez **New target group** dans **Target group** et fournissez un nom pour le "target group" (ex : unicorn-tg). pour le **Target type**, sélectionnez **IP**, laissez les valeurs par défaut pour les autres champs et cliquez sur **Next: Register Targets** 20 | 21 | ![configure-routing](/ecs/configure-routing.png) 22 | 23 | Laissez les valeurs par défaut pour "register targets", cliquez **Next: Review** et enfin, cliquez sur **Create** pour créer le "load balancer". 24 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.it.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Crea un AWS Elastic Load Balancer" 3 | weight = 35 4 | +++ 5 | 6 | 7 | Dalla **AWS Console**, seleziona **Services**, **EC2** e quindi **Load Balancers** 8 | 9 | Clicca sul bottone **Create Load Balancer** e **Application Load Balancer** come indicato qui sotto: 10 | 11 | ![create-loadbalancer](/ecs/create-lb.png) 12 | 13 | Nello step **1. Configure Load Balancer** , inserisci il **Nome** del load balancer(e.g. unicorn-lb), scegli il VPC che stai usando (e.g TargetVPC) e seleziona le tue subnet pubbliche per almeno due subnet (public-a, public-b) come di seguito: 14 | 15 | ![configure-loadbalancer](/ecs/configure-lb.png) 16 | 17 | Nello step **3. Configure Security Group** , scegli il security group LB-SG. 18 | 19 | Nello step **4. Configure Routing** , seleziona **New target group** nel **Target group** e fornire un nome per il gruppo target (e.g. unicorn-tg). Per il **Target type**, selezionare **IP**, lasciare il valore predefinito per gli altri campi e fare clic su **Next: Register Targets** 20 | 21 | ![configure-routing](/ecs/configure-routing.png) 22 | 23 | Lasciare l'impostazione predefinita delle destinazioni del registro, clicca **Next: Review** e quindi clicca **Create** per creare il load balancer. 24 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Elastic Load Balancing の設定" 3 | weight = 35 4 | +++ 5 | 6 | マネジメントコンソール上部の **「サービス」** から **EC2** のページを開き、左のメニューから **「ロードバランサー」** を選択します。 7 | 8 | **「ロードバランサーの作成」** ボタンをクリックし、以下のように **Application Load Balancer** を選択します。 9 | 10 | ![create-loadbalancer](/ecs/create-lb.ja.png) 11 | 12 | **「手順 1: ロードバランサーの設定」** では、**名前**(例: unicorn-lb)を入力し、使用する **VPC**(例: TargetVPC)を選択したうえで、以下のように少なくとも2つのアベイラビリティゾーンで、**パブリックサブネット** (例: TargetVPC-public-a, TargetVPC-public-b) を選択します: 13 | 14 | ![configure-loadbalancer](/ecs/configure-lb.ja.png) 15 | 16 | **「手順 2: セキュリティ設定の構成」** では、何も変更せずに **「次の手順: セキュリティグループの設定」** をクリックします。 17 | 18 | **「手順 3: セキュリティグループの設定」** では、前頁で作成した **LB-SG** セキュリティグループを選択します。 19 | 20 | **「手順 4: ルーティングの設定」** では、**ターゲットグループ** に **新しいターゲットグループ** を選択し、**名前**(例:unicorn-tg)を入力します。**ターゲットの種類**には、**IP** を選択し、他のフィールドはデフォルト値のままにして、**「次の手順: ターゲットの登録」** をクリックします。 21 | 22 | ![configure-routing](/ecs/configure-routing.ja.png) 23 | 24 | **「手順 5: ターゲットの登録」** では、何も変更せずに **「次の手順: 確認」** をクリックします。 25 | 最後に、設定内容に問題がないことを確認したら、**「作成」** をクリックして、ロードバランサーの作成を開始します。 26 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.nl.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Creëer een AWS Elastic Load Balancer" 3 | weight = 35 4 | +++ 5 | 6 | 7 | In het **AWS Console**, selecteer **Services**, **EC2** en dan **Load Balancers** 8 | 9 | Klik op de **Create Load Balancer** knop en **Application Load Balancer** zoals hieronder weergegeven: 10 | 11 | ![create-loadbalancer](/ecs/create-lb.png) 12 | 13 | In de eerste stap **1. Configure Load Balancer**, geef de load balancer een naam (b.v. unicorn-lb), kies dan de **VPC** (b.v. TargetVPC) en selecteer jouw **public subnets** voor minimaal twee subnetten (public-a, public-b) alsvolgt: 14 | 15 | ![configure-loadbalancer](/ecs/configure-lb.png) 16 | 17 | In stap **3. Configure Security Group**, kies de LB-SG security groep. 18 | 19 | In stap **4. Configure Routing**, selecteer **New target group** onder **Target group** en geef een naam voor de **target group** (b.v. unicorn-tg). Voor **Target type**, selecteer **IP**, laat de rest op de standaardwaarden staan en klik op **Next: Register Targets** 20 | 21 | ![configure-routing](/ecs/configure-routing.png) 22 | 23 | Laat de standaard waarden staan en klik op **Next: Review** en klik op **Create** om de load balancer te creëren. 24 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.pt.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Criar um AWS Elastic Load Balancer" 3 | weight = 35 4 | +++ 5 | 6 | 7 | Na **AWS Console**, selecione **Services**, **EC2** e então **Load Balancers** 8 | 9 | Clique o botão **Create Load Balancer** e **Application Load Balancer** como indicado abaixo: 10 | 11 | ![create-loadbalancer](/ecs/create-lb.png) 12 | 13 | No passo **1. Configure Load Balancer**, entre o **Nome** do load balancer (ex. unicorn-lb), escolha a VPC que você usará (ex. TargetVPC) e selecione pelo menos duas public subnets (public-a, public-b) como abaixo: 14 | 15 | ![configure-loadbalancer](/ecs/configure-lb.png) 16 | 17 | No passo **3. Configure Security Group**, escolh o ecurity group LB-SG s. 18 | 19 | No passo **4. Configure Routing**, selecione **New target group** no **Target group** e dê um nome fao target group (ex. unicorn-tg). Para o **Target type**, selecione **IP**, deixe o default nos demais campos e clique **Next: Register Targets** 20 | 21 | ![configure-routing](/ecs/configure-routing.png) 22 | 23 | Deixe o default nos register targets, clique **Next: Review** e então clique em **Create** para criar o load balancer. 24 | -------------------------------------------------------------------------------- /workshop/content/container-migration/create-loadbalancer.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "创建 AWS 弹性负载均衡器" 3 | weight = 35 4 | +++ 5 | 6 | 7 | 在 **AWS 控制台** 中,选择 **服务**、**EC2**,然后选择 **负载均衡器**。 8 | 9 | 单击 **创建负载平衡器** 按钮和 **应用程序负载平衡器**,如下所示: 10 | 11 | ![create-loadbalancer](/ecs/create-lb.zh.png) 12 | 13 | 在 **步骤 1:配置负载均衡器** 中,输入负载均衡器 **名称**(例如,Uniorn-lb),选择您使用的 VPC(例如 TargetVPC),然后至少选择两个公有子网(public-a、public-b),如下所示: 14 | 15 | ![configure-loadbalancer](/ecs/configure-lb.zh.png) 16 | 17 | 在 **步骤 3:配置安全组** 中,选择 LB-SG 安全组。 18 | 19 | 在 **步骤 4:配置路由** 中,在 **目标组** 中选择 **新建目标组**,并提供目标组的名称(例如,Unicorn-tg)。对于 **目标类型**,选择 **IP**,保留其他字段为默认值,然后单击 **下一步:注册目标**。 20 | 21 | ![configure-routing](/ecs/configure-routing.zh.png) 22 | 23 | 保留注册目标的默认值,单击 **下一步:审核**,然后单击 **创建** 以创建负载均衡器。 -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.de.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Zusammenfassung" 3 | weight = 60 4 | +++ 5 | 6 | Herzlichen Glückwunsch, Sie haben folgende Punkte erfolgreich abgeschlossen: 7 | 8 | 1. Erstellt eine neue Datenbank mit **Amazon Relational Database Service** 9 | 2. Erstellt eine **AWS Database Migration Service replication instance**, mit der Sie Daten 10 | zwischen den Datenbanken replizieren können. 11 | 3. Erstellt die **source and target database endpoints** Endpunkte 12 | 4. Die Konfiguration der Quelldatenbank geändert um eine Kontinuierliche Replikation von Daten zu ermöglichen. 13 | 5. Die Replikation von Daten mit **replication task** ausgeführt. 14 | 15 | Jetzt können wir den Webserver migrieren und konfigurieren! 16 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Summary" 3 | weight = 60 4 | +++ 5 | 6 | Congratulations, you have successfully: 7 | 8 | 1. Created a new managed database, using **Amazon Relational Database Service** 9 | 2. Created an **AWS Database Migration Service replication instance** - that allows you to replicate data between databases 10 | 3. Created the **source and target database endpoints** 11 | 4. Modified the configuration of the source database to allow for **continuous replication of data** 12 | 5. Started the replication of data through a **replication task** 13 | 14 | So now it's time to migrate and configure the webserver! 15 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.es.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Resumen" 3 | weight = 60 4 | +++ 5 | 6 | Felicitaciones, ha logrado: 7 | 8 | 1. Crear una nueva base de datos administrada, utilizando el servicio **Amazon Relational Database Service (RDS)** 9 | 2. Crear una **instancia de replicación de AWS Database Migration Service**, que le permite replicar datos entre bases de datos 10 | 3. Crear los **endpoints de la base de datos de origen y destino** 11 | 4. Modificar la configuración de la base de datos de origen para permitir la **replicación continua de datos**. 12 | 5. Comenzar la replicación de datos a través de una **tarea de replicación** 13 | 14 | ¡Ahora es el momento de migrar y configurar el servidor web! 15 | 16 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Résumé" 3 | weight = 60 4 | +++ 5 | 6 | Félicitations, vous avez avec succès : 7 | 8 | 1. Créé une nouvelle base de données en utilisant **Amazon Relational Database Service** 9 | 2. Créé une **Instance de réplication AWS DMS** - qui vous permet de répliquer les données entre les bases de données 10 | 3. Créé les **source et target database endpoints** 11 | 4. Modifié la configuration de la base de données source afin de permettre la **réplication continue des données** 12 | 5. Démarré la réplication des données avec une **tâche de réplication** 13 | 14 | Donc maintenant c'est le moment de migrer et de configurer le serveur web ! -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.it.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Summary" 3 | weight = 60 4 | +++ 5 | 6 | Congratulazioni, hai completato: 7 | 8 | 1. Creato un nuovo database gestito, utilizzando **Amazon Relational Database Service** 9 | 2. Creato una nuova **AWS Database Migration Service replication instance** - che consente di replicare i dati tra database 10 | 3. Creato gli **endpoint del database di origine e di destinazione** 11 | 4. Modificata la configurazione del database di origine per consentire **replica continua dei dati** 12 | 5. Avviato la replica dei dati tramite **replication task** 13 | 14 | Quindi ora è il momento di migrare e configurare il server web! 15 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "サマリー" 3 | weight = 60 4 | +++ 5 | 6 | おめでとうございます!本セクションでは、以下のタスクを実施しました: 7 | 8 | 1. **Amazon Relational Database Service (RDS)** を使用して、ターゲットとなる**マネージドデータベース**を作成しました。 9 | 2. データベース間のレプリケーションを可能にする **AWS Database Migration Service (DMS)** の**レプリケーションインスタンス**を作成しました。 10 | 3. ソースとターゲットの**データベースエンドポイント**を作成しました。 11 | 4. データの**継続的なレプリケーション(CDC)** を可能にするために、ソースデータベースの構成を変更しました。 12 | 5. DMS の**レプリケーションタスク**を作成し、データベース間のレプリケーションを開始しました。 13 | 14 | 次のセクションでは、Web サーバーの移行と設定を行います! 15 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.nl.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Samenvatting" 3 | weight = 60 4 | +++ 5 | 6 | Gefeliciteerd! Je hebt zojuist hetvolgende succesvol voltooid: 7 | 8 | 1. Een nieuwe **managed database** opgezet met **Amazon Relational Database Service** 9 | 2. Een nieuwe **AWS Database Migration Service replication instance** opgezet - die het mogelijk maakt data te migreren tussen de databases in de bron- en doelomgeving. 10 | 3. De **source and target database endpoints** geconfigureerd 11 | 4. De configuratie van de database in de bronomgeving aangepast en geschikt gemaakt voor **continuous replication of data** 12 | 5. De **datareplicatie taak** aangemaakt en gestart 13 | 14 | Dus is het nu tijd voor de migratie en configuratie van de web server! 15 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.pt.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Resumo" 3 | weight = 60 4 | +++ 5 | 6 | Parabéns, veja as atividades que você fez com sucesso: 7 | 8 | 1. Criou um novo banco de dados, usando **Amazon Relational Database Service** 9 | 2. Criou uma **AWS Database Migration Service replication instance** - que permite replicar dados 10 | 3. Criou os **source and target database endpoints** 11 | 4. Modificou a configuração do banco de dados origem para habilitar a **réplica contínua de dados** 12 | 5. Iniciou a replicação de dados através de uma **replication task** 13 | 14 | Agora é hora de migrar e configurar o webserver! 15 | -------------------------------------------------------------------------------- /workshop/content/database-migration/Summary.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "小结" 3 | weight = 60 4 | +++ 5 | 6 | 祝贺您已经成功地完成了: 7 | 8 | 1. 使用 **Amazon Relational Database Service** 创建了一个新的托管数据库 9 | 2. 创建了一个 **AWS Database Migration Service 复制实例** - 允许您在数据库之间复制数据 10 | 3. 创建了 **源数据库端点和目标数据库端点** 11 | 4. 修改了源数据库的配置,以执行 **持续复制数据** 12 | 5. 通过 **复制任务** 开始复制数据 13 | 14 | 现在是时候迁移和配置 Web 服务器了! 15 | -------------------------------------------------------------------------------- /workshop/content/database-migration/_index.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "データベースの移行" 3 | weight = 10 4 | pre = "1. " 5 | +++ 6 | 7 | 本セクションでは、**AWS Database Migration Service (DMS)** を使って、移行元(ソース)の MySQL データベースを、移行先(ターゲット)となる Amazon RDS for MySQL に移行します。 8 | 9 | これは同種のデータベース間の移行(ソースとターゲットのデータベースエンジンが同じ)であるため、スキーマ構造、データ型、データベースコードはソースとターゲットの間で互換性があり、スキーマの変換は必要ありません。 10 | 11 | ![1](/db-mig/DMS-overview.png) 12 | 13 | DMS の詳細については、以下の動画をご覧ください: 14 | 15 |
16 | 17 | 以下の手順で、データベース移行を実施します: 18 | 19 | 1. [ターゲットデータベースの作成]({{< ref "/Create-target-DB.ja.md" >}}) 20 | 21 | 2. [ネットワークの設定]({{< ref "/setup_network.ja.md" >}}) 22 | 23 | 2. [レプリケーションインスタンスの作成]({{< ref "Create-Replication-instance.ja.md" >}}) 24 | 25 | 3. [エンドポイントの作成]({{< ref "Create-Source-and-Target-endpoints.ja.md" >}}) 26 | 27 | 4. [ソースデータベースの設定]({{< ref "configure_source_database.ja.md" >}}) 28 | 29 | 4. [レプリケーションタスクの作成と実行]({{< ref "Create-and-run-Replication-task.ja.md" >}}) 30 | 31 | 5. [サマリー]({{< ref "Summary.ja.md" >}}) 32 | -------------------------------------------------------------------------------- /workshop/content/database-migration/_index.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "数据库迁移" 3 | weight = 10 4 | pre = "1. " 5 | +++ 6 | 7 | 在本节中,您将使用 **AWS Database Migration Service** 执行从源 MySQL 数据库到目标 Amazon RDS for MySQL 数据库的迁移。由于这是同构数据库迁移(源数据库引擎和目标数据库引擎相同)- schema 结构、数据类型和数据库代码在源数据库和目标数据库之间兼容,这意味着此类迁移不需要做任何 schema 转换。 8 | 9 | ![1](/db-mig/DMS-overview.zh.png) 10 | 11 | 您可以通过观看以下视频了解有关此服务的更多详细信息。 12 | 13 |
14 | 15 | 16 | 在本实验中,您将执行以下步骤: 17 | 18 | 1. [创建目标数据库]({{< ref "/Create-target-DB.zh.md" >}}) 19 | 20 | 2. [设置网络]({{< ref "/setup_network.zh.md" >}}) 21 | 22 | 2. [创建复制实例]({{< ref "Create-Replication-instance.zh.md" >}}) 23 | 24 | 3. [创建源端点和目标端点]({{< ref "Create-Source-and-Target-endpoints.zh.md" >}}) 25 | 26 | 4. [配置源数据库]({{< ref "configure_source_database.zh.md" >}}) 27 | 28 | 4. [创建和运行复制任务]({{< ref "Create-and-run-Replication-task.zh.md" >}}) 29 | 30 | 5. [小结]({{< ref "Summary.zh.md" >}}) 31 | -------------------------------------------------------------------------------- /workshop/content/database-migration/setup_network.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "设置网络" 3 | weight = 10 4 | +++ 5 | 6 | 在本研讨会中,我们不会使用 **VPN** 或者 **AWS Direct Connect**,因此,**DMS 复制实例** 需要通过公共互联网连接到源数据库,通过私有网络连接到目标数据库。 7 | 8 | ![Replication Instance Architecture](/db-mig/ri-network-conf.zh.png) 9 | 10 | ### 配置安全组 11 | 12 | 在本研讨会中,**VPC 安全组** 必须允许来自 **DMS 复制实例** 到目标 RDS 数据库的入站流量。 13 | 14 | 1. 为 **DMS 复制实例** 创建安全组 15 | 16 | a. 进入 **AWS 控制台 > 服务 > EC2 > 安全组**,点击 **创建安全组** 按钮。 17 | 18 | b. 输入 **安全组名称** (比如 RI-SG),填写一个 **描述**,从 VPC 下拉列表中选择 **TargetVPC**,点击 **创建安全组** 按钮。 19 | 20 | ![Adding inbound rule for Replication instance](/db-mig/ri-sg.zh.png) 21 | 22 | {{% notice note %}} 23 | 无需给 **DMS 复制实例** 安全组 **RI-SG** 添加任何入站规则。 24 | {{% /notice %}} 25 | 26 | 2. 为 **目标数据库** 创建安全组 27 | 28 | a. 仍然在 **AWS 控制台 > 服务 > EC2 > 安全组** 界面中,点击 **创建安全组** 按钮。 29 | 30 | b. 输入 **安全组名称** (比如 DB-SG),填写一个 **描述**,从 VPC 下拉列表中选择 **TargetVPC**。 31 | 32 | c. 在 **入站规则** 部分点击 **添加规则** 按钮,配置规则以允许来自 **DMS 复制实例** 安全组在端口 3306 上的 **入站** 流量,然后点击 **创建安全组** 按钮 33 | 34 | ![Adding inbound rule for target database](/db-mig/security-group-inbound-rule.zh.png) 35 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.de.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Erste Schritte" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | Um den Workshop zu starten, wählen Sie einen der folgenden Pfade: 16 | 17 | | | | 18 | | --- | --- | 19 | | [![Starte Workshop in einem eigenen AWS-Konto](/intro/option-self-paced.png)]({{< ref "/on-your-own.de.md" >}}) | [![Attending an AWS hosted event (using AWS provided AWS Accounts)](/intro/option-aws-led.png)]({{< ref "/migration-hub.de.md" >}}) | 20 | |
[Starte Workshop in einem eigenen AWS-Konto]({{< ref "/on-your-own.de.md" >}})
|
[Teilnahme an einer von AWS gehosteten Veranstaltung]({{< ref "/migration-hub.de.md" >}})
| 21 | 22 | Wenn Sie an einer von AWS veranstalteten Veranstaltung für Ihr Team interessiert sind, dann wenden Sie sich bitte an uns. 23 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.en.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Getting Started" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | To start the workshop, select one of the following 16 | 17 | | | | 18 | | --- | --- | 19 | | [![Running workshop in your own AWS Account](/intro/option-self-paced.png)]({{< ref "/on-your-own.en.md" >}}) | [![Attending an AWS hosted event (using AWS provided AWS Accounts)](/intro/option-aws-led.png)]({{< ref "/review-deployment.en.md" >}}) | 20 | |
[Running the workshop in your own AWS Account]({{< ref "/on-your-own.en.md" >}})
|
[Attending an AWS hosted event]({{< ref "/review-deployment.en.md" >}})
| 21 | 22 | If you are interested in an AWS-hosted event dedicated for your team, please contact us. 23 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.es.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Comenzemos" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | Para comenzar el taller, seleccione una de las siguientes rutas: 16 | 17 | | | | 18 | | --- | --- | 19 | | [![Ejecutar el taller en su propia cuenta de AWS](/intro/option-self-paced.png)]({{< ref "/on-your-own.es.md" >}}) | [![Asistir a un evento alojado en AWS (using AWS provided AWS Accounts)](/intro/option-aws-led.png)]({{< ref "/migration-hub.es.md" >}}) | 20 | |
[Ejecutar el taller en su propia cuenta de AWS]({{< ref "/on-your-own.es.md" >}})
|
[Asistir a un evento alojado en AWS]({{< ref "/migration-hub.es.md" >}})
| 21 | 22 | Si está interesado en un evento organizado por AWS dedicado a su equipo contáctenos. 23 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.fr.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Démarrage" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | Pour démarrer le workshop, sélectionnez l'une des deux options : 16 | 17 | | | | 18 | | --- | --- | 19 | | [![Dérouler le workshop dans votre propre compte AWS](/intro/option-self-paced.png)]({{< ref "/on-your-own.fr.md" >}}) | [![Participer à un évènement organisé par AWS (avec des comptes fournis par AWS)](/intro/option-aws-led.png)]({{< ref "/migration-hub.fr.md" >}}) | 20 | |
[Dérouler le workshop dans votre propre compte AWS]({{< ref "/on-your-own.fr.md" >}})
|
[Participer à un évènement organisé par AWS]({{< ref "/migration-hub.fr.md" >}})
| 21 | 22 | Si vous êtes intéressé par un évènement organisé par AWS pour vos équipes, merci de nous contacter ici . 23 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.it.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Iniziamo" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | Per iniziare il workshop, selezionare uno dei seguenti percorsi: 16 | 17 | | | | 18 | | --- | --- | 19 | | [![Eseguire il workshop nel proprio Account AWS](/intro/option-self-paced.png)]({{< ref "/on-your-own.it.md" >}}) | [![Partecipazione a un evento ospitato da AWS (utilizzando gli account AWS forniti da AWS)](/intro/option-aws-led.png)]({{< ref "/migration-hub.it.md" >}}) | 20 | |
[Eseguire il workshop nel proprio Account AWS]({{< ref "/on-your-own.it.md" >}})
|
[Partecipazione a un evento ospitato da AWS]({{< ref "/migration-hub.it.md" >}})
| 21 | 22 | Se sei interessato a un evento ospitato da AWS dedicato al tuo team, per favore contattaci. 23 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "事前準備" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | 以下のいずれかを選択して、ハンズオンを開始します。 16 | 17 | | | | 18 | | --- | --- | 19 | | [![ご自身の環境でハンズオンを実施する場合(自前の AWS アカウントを使用)](/intro/option-self-paced.png)]({{< ref "/on-your-own.ja.md" >}}) | [![AWS 主催のイベントに参加している場合(AWS が提供するアカウントを使用)](/intro/option-aws-led.png)]({{< ref "/at-aws-event.ja.md" >}}) | 20 | |
[ご自身の環境でハンズオンを実施する場合]({{< ref "/on-your-own.ja.md" >}})
|
[AWS 主催のイベントに参加している場合]({{< ref "/at-aws-event.ja.md" >}})
| 21 | 22 | 23 | 個社向けのハンズオンワークショップにご興味のある方は、ぜひこちらまでお問い合わせください。 -------------------------------------------------------------------------------- /workshop/content/intro/_index.nl.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Beginnen met de workshop" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 7 | 15 | 16 | Om te beginnen met de workshop, volg een van de onderstaande instructies afhankelijk van of je de workshop: 17 | 18 | | | | 19 | | --- | --- | 20 | | [![Zelfstanding wilt uitvoeren (in je eigen AWS Account)](/intro/option-self-paced.png)]({{< ref "./on-your-own.nl.md" >}}) | [![Wilt uitvoeren tijdens een AWS Event (in een door AWS verstrekte AWS Accounts)](/intro/option-aws-led.png)]({{< ref "./migration-hub.nl.md" >}}) | 21 | |
[Zelfstanding wilt uitvoeren (in je eigen AWS Account)]({{< ref "./on-your-own.nl.md" >}})
|
[Wilt uitvoeren tijdens een AWS Event (in een door AWS verstrekte AWS Accounts)]({{< ref "./migration-hub.nl.md" >}})
| 22 | 23 | Indien je geïnteresseerd bent in een AWS event speciall voor jouw team/organisatie, neem dan contact op via: contact us. -------------------------------------------------------------------------------- /workshop/content/intro/_index.pt.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Começando" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | Para começar o workshop, selecione um dos seguintes caminhos: 16 | 17 | | | | 18 | | --- | --- | 19 | | [![Rodar o workshop na sua própria conta AWS](/intro/option-self-paced.png)]({{< ref "/on-your-own.pt.md" >}}) | [![Participando de um evento da AWS (usando contas AWS fornecidas pela AWS)](/intro/option-aws-led.png)]({{< ref "/migration-hub.pt.md" >}}) | 20 | |
[Rodar o workshop na sua própria conta AWS]({{< ref "/on-your-own.pt.md" >}})
|
[Participando de um evento da AWS]({{< ref "/migration-hub.pt.md" >}})
| 21 | 22 | Se estiver interessado em um evento AWS dedicado para o seu time, por favor entre em contato. 23 | -------------------------------------------------------------------------------- /workshop/content/intro/_index.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "入门" 3 | weight = 5 4 | pre = "0. " 5 | +++ 6 | 14 | 15 | 要开始研讨会,请选择以下路径之一: 16 | 17 | | | | 18 | | --- | --- | 19 | | [![在您自己的 AWS 帐号中运行研讨会](/intro/option-self-paced.png)]({{< ref "/on-your-own.zh.md" >}}) | [![参加 AWS 主办的活动(使用 AWS 提供的帐号)](/intro/option-aws-led.png)]({{< ref "/migration-hub.zh.md" >}}) | 20 | |
[在您自己的 AWS 帐号中运行研讨会]({{< ref "/on-your-own.zh.md" >}})
|
[参加 AWS 主办的活动]({{< ref "/migration-hub.zh.md" >}})
| 21 | 22 | 如果您对专为您的团队举办一次 AWS 活动感兴趣,请 联系我们。 23 | -------------------------------------------------------------------------------- /workshop/content/intro/migration-hub.ja.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Migration Hub の有効化" 3 | weight = 50 4 | +++ 5 | 6 | #### AWS Migration Hub 7 | 8 | AWS Migration Hub では、AWS およびパートナーの複数のソリューションにおける、アプリケーション移行の進行状況を1つの場所から追跡できます。 9 | 有効化するには、マネジメントコンソール上部の **「サービス」** から **AWS Migration Hub** のページを開きます。 10 | 11 | ![Migration Hub - Dashboard](/intro/migration-hub-dashboard.ja.png) 12 | 13 | 左のメニューから **「移行」** を選択し、**米国西部(オレゴン)** をホームリージョンに設定してください。 14 | 15 | ![Migration Hub - choose home region](/intro/migration-hub-choose-home-region.ja.png) 16 | 17 | 次に、**「移行」 → 「ツール」** をクリックして、AWS Migration Hub に移行の進行状況を送信するツールを選択します。 18 | 追加設定なしで使用できる CloudEndure Migration に加え、今回は **AWS Database Migration Service (DMS)** との接続を設定します。 19 | 20 | ページの一番下までスクロールし、**AWS Database Migration Service** カードの **「接続」** ボタンをクリックします。 21 | 22 | ![Migration Hub - connect DMS](/intro/migration-hub-connect-dms.ja.png) 23 | 24 | 数秒のうちに、接続のステータスが **「接続されていません」** から **「接続済み」** に変化します。 25 | 26 | ![Migration Hub - connected DMS](/intro/migration-hub-connect-dms-connected.ja.png) 27 | 28 | 以上で AWS Migration Hub の設定は完了です。今後、**CloudEndure Migration** および **AWS Database Migration Service** での、すべてのアクティビティを **AWS Migration Hub** のダッシュボードから確認することができます。 -------------------------------------------------------------------------------- /workshop/content/intro/migration-hub.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "启用 Migration Hub" 3 | weight = 50 4 | +++ 5 | 6 | #### AWS Migration Hub 7 | 8 | AWS Migration Hub 让您可以在一个位置跟踪不同 AWS 和合作伙伴解决方案中的应用程序迁移进度。 9 | 10 | 要启用它,请在 **AWS 控制台** 内转到 **服务 -> AWS Migration Hub**,然后从左侧菜单中单击 **Migrate** 并选择 **US West (Oregon)** 作为您的使用区域(home region)。 11 | 12 | ![Migration Hub - choose home region](/intro/migration-hub-choose-home-region.zh.png) 13 | 14 | 然后单击 **Migrate -> Tools** 以选择将提供更新给 **AWS Migration Hub** 的工具。Cloudendure Migration已经开箱即用,但您需要配置与 **AWS Database Migration Service** 的集成。 15 | 16 | 滚动到页面底部,然后单击 **AWS Database Migration Service 卡** 中的 **Connect** 按钮。 17 | 18 | ![Migration Hub - connect DMS](/intro/migration-hub-connect-dms.zh.png) 19 | 20 | 在几秒钟内,集成状态应从 **Not connected** 更改为 **Connected**。 21 | 22 | ![Migration Hub - connected DMS](/intro/migration-hub-connect-dms-connected.zh.png) 23 | 24 | 就这样,您将来在 **Cloudendure Migration** 和 **AWS Database Migration Service** 中的所有活动都将展示到 **AWS Migration Hub** 控制面板中。 25 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.de.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Umgebung überprüfen" 4 | weight = 40 5 | +++ 6 | ## Quellumgebung 7 | 8 | Die folgende Quellumgebung wird während der Umgebungsvorbereitung bereitgestellt. 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | Die Quellumgebung besteht aus einer dreistufigen E-Commerce-Anwendung. 13 | Ein Ubuntu-Linux Webserver, auf dem Apache mit PHP, Wordpress, WooCommerce ausgeführt wird 14 | und ein Datenbankserver unter Ubuntu mit MySQL Version 5.7. 15 | 16 | ## Zielumgebung 17 | 18 | Das folgende Zielnetzwerk **Amazon Virtual Private Cloud (VPC)** wird während 19 | der Umgebungsvorbereitung bereitgestellt. 20 | 21 | ![target-env](/intro/target-vpc.png) 22 | 23 | Die Netzwerkumgebung (VPC) besteht aus 6 Subnetzen (2 öffentliche, 2 private 24 | für den Webserver und 2 private für Datenbanken) in zwei Verfügbarkeitszonen (AD's). 25 | 26 | Jetzt können Sie [AWS Migration Hub]({{< ref "/migration-hub.de.md" >}}) aktivieren. 27 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.en.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Review deployed environment" 4 | weight = 40 5 | +++ 6 | ## Source Environment 7 | 8 | The following source environment is deployed during the environment preparation. 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | The Source Environment consist of a three tier e-commerce application; a webserver running Ubuntu with Apache, PHP, Wordpress, WooCommerce and a database server running Ubuntu with MySQL version 5.7. 13 | 14 | 15 | ## Target Environment 16 | 17 | The following target **Amazon Virtual Private Cloud (VPC)** is deployed during the environment preparation. 18 | 19 | ![target-env](/intro/target-vpc.png) 20 | 21 | The VPC consist of 6 subnets (2 public, 2 private for webservers and 2 private for database) across two availability zones. 22 | 23 | Now you can enable [AWS Migration Hub]({{< ref "/migration-hub.en.md" >}}) 24 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.es.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Revisar el entorno implementado" 4 | weight = 40 5 | +++ 6 | ## Entorno de origen 7 | 8 | El siguiente entorno de origen se implementa durante la preparación del entorno. 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | El entorno de origen consta de una aplicación de comercio electrónico de tres niveles; un servidor web que ejecuta Ubuntu con Apache, PHP, Wordpress, WooCommerce y un servidor de base de datos que ejecuta Ubuntu con MySQL versión 5.7. 13 | 14 | 15 | ## Entorno de destino 16 | 17 | El siguiente destino de **Amazon Virtual Private Cloud (VPC)** se implementa durante la preparación del entorno. 18 | 19 | ![target-env](/intro/target-vpc.png) 20 | 21 | La VPC consta de 6 subredes (2 públicas, 2 privadas para servidores web y 2 privadas para bases de datos) en dos zonas de disponibilidad. 22 | 23 | Ahora puede habilitar [AWS Migration Hub]({{< ref "/migration-hub.es.md" >}}) 24 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.fr.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Revue de l'environnement déployé" 4 | weight = 40 5 | +++ 6 | ## Environnement Source 7 | 8 | L'environnement source suivant est déployé durant la phase de préparation. 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | L'environnement source est une application e-commerce en architecture trois tiers; un serveur web sous Ubuntu avec Apache, PHP, Wordpress, WooCommerce et un serveur de base de données sous Ubuntu avec MySQL version 5.7. 13 | 14 | 15 | ## Environnement cible 16 | 17 | L'environnement cible suivant **Amazon Virtual Private Cloud (VPC)** est déployé durant la phase de préparation de l'environnement. 18 | 19 | ![target-env](/intro/target-vpc.png) 20 | 21 | Le VPC est composé de 6 sous-réseaux (2 publiques, 2 privés pour les serveurs web et 2 privés pour la base de données) répartis sur 2 zones de disponibilité. 22 | 23 | Maintenant vous pouvez activer [AWS Migration Hub]({{< ref "/migration-hub.fr.md" >}}) 24 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.it.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Rivedere l'ambiente distribuito" 4 | weight = 40 5 | +++ 6 | ## Ambiente d'origine 7 | 8 | Il seguente ambiente d'origine viene distribuito durante la preparazione dell'ambiente. 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | L'ambiente d'origine consiste in una applicazione e-commerce a tre livelli; un server web che esegue Ubuntu con Apache, PHP, Wordpress, WooCommerce e un database server che esegue Ubuntu con MySQL versione 5.7. 13 | 14 | 15 | ## Ambiente di destinazione 16 | 17 | Il seguente target **Amazon Virtual Private Cloud (VPC)** viene distribuito durante la preparazione dell'ambiente. 18 | 19 | ![target-env](/intro/target-vpc.png) 20 | 21 | La VPC consiste in 6 sottoreti (2 publiche, 2 private per i servers web e 2 private per il database) attraverso due zone di disponibilità. 22 | 23 | Ora puoi usare [AWS Migration Hub]({{< ref "/migration-hub.it.md" >}}) 24 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.nl.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Overzicht" 4 | weight = 30 5 | +++ 6 | ## Bronomgeving 7 | 8 | De onderstaande bronomgeving is opgezet tijdens het voorbereiden van de workshopomgeving: 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | De bronomgeving bestaat uit een twee-laagse e-commerce applicatie; een webserver draaiende op Ubuntu met Apache, PHP, Wordpress, WooCommerce en een Database server draaiende op Ubuntu met MySQL versie 5.7. 13 | 14 | 15 | ## Doelomgeving 16 | 17 | De onderstaande **Amazon Virtual Private Cloud (VPC)** doelomgeving is opgezet tijdens het voorbereiden van de workshopomgeving: 18 | 19 | ![target-env](/intro/target-vpc.png) 20 | 21 | Het bovenstaande diagram illustreert de VPC in de AWS cloud bestaande uit 6 subnetten (2 public, 2 private voor de webservers en 2 private voor de database) verspreid over 2 availability zones. 22 | 23 | Nu kun je verder gaan met het opzetten van [AWS Migration Hub]({{< ref "/migration-hub.nl.md" >}}) -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.pt.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "Revisando o ambiente implementado" 4 | weight = 40 5 | +++ 6 | ## Ambiente Origem 7 | 8 | O seguinte ambiente origem é implementado durante a prepação. 9 | 10 | ![source-env](/intro/source-env.png) 11 | 12 | O Ambiente Origem consiste de uma applicação de comércio eletrónico de três camadas; um webserver rodando Ubuntu com Apache, PHP, Wordpress, WooCommerce e um servidor banco de dados rodando Ubuntu com MySQL 5.7. 13 | 14 | 15 | ## Ambiente Destino 16 | 17 | A seguinte **Amazon Virtual Private Cloud (VPC)** destino é implementada durante a preparação do ambiente. 18 | 19 | ![target-env](/intro/target-vpc.png) 20 | 21 | A VPC consiste de 6 subnets (2 públicas, 2 privadas para webservers e 2 privadas para banco de dados) cruzando duas zonas de disponibilidade. 22 | 23 | Agora você pode habilitar o [AWS Migration Hub]({{< ref "/migration-hub.pt.md" >}}) 24 | -------------------------------------------------------------------------------- /workshop/content/intro/review-deployment.zh.md: -------------------------------------------------------------------------------- 1 | 2 | +++ 3 | title = "审查部署的环境" 4 | weight = 40 5 | +++ 6 | ## 源环境 7 | 8 | 在环境准备过程中部署了以下源环境。 9 | 10 | ![source-env](/intro/source-env.zh.png) 11 | 12 | 源环境包括一个三层电子商务应用程序; 一个Web服务器运行 Ubuntu 与 Apache, PHP, Wordpress, WooCommerce 和一个运行 Ubuntu 的 MySQL 5.7 数据库服务器。 13 | 14 | 15 | ## 目标环境 16 | 17 | 在环境准备过程中部署了以下目标 **Amazon Virtual Private Cloud (VPC)**。 18 | 19 | ![target-env](/intro/target-vpc.zh.png) 20 | 21 | VPC 由跨两个可用区的 6 个子网(2 个公有子网,2 个私有子网用于Web服务器,2 个私有子网用于数据库)组成。 22 | 23 | 现在您可以启用 [AWS Migration Hub]({{< ref "/migration-hub.zh.md" >}})。 24 | -------------------------------------------------------------------------------- /workshop/content/server-migration/CE-Blueprints.zh.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "配置蓝图" 3 | weight = 30 4 | +++ 5 | 6 | 在实例复制时,我们可以配置 **CloudEndure 目标主机蓝图**,这将确定 AWS 中启动的目标主机(复制实例)的规格。它包括很多参数,包括主机类型(比如 t3.medium),主机运行所在的 **子网**, **私有 IP** 地址和磁盘类型。 7 | 8 | 为了配置蓝图,进入 **Machines** 页面,点击希望配置的主机名称,然后导航到 **BLUEPRINT** 部分。 9 | 10 | ![CE-BluePrints](/ce/CE-BluePrints.png) 11 | 12 | 使用以下信息: 13 | 14 | | 参数 | 值 | 15 | | ------------------------------------------ | ------------------------------------------------------------ | 16 | | Machine Type | t3.small | 17 | | Launch Type | On demand 18 | | Target subnet | TargetVPC-public-subnet-b | 19 | | Security group | Create new | 20 | | Private IP | Create new | 21 | | Tags | 添加值为 'Webserver' 的 'Name' 标签 | 22 | 23 | 24 | 其它部分保留缺省值,但您可以查看它们,以理解目标实例可用的配置选项。 25 | 26 | {{% notice warning %}} 27 | 如果您在参加 AWS 活动,请选择 **Machine type** 不大于 *.large 的机型,否则提供给您的 IAM 权限将会阻止后续创建实例的操作。 28 | {{% /notice %}} 29 | 30 | 31 | 32 | {{% notice tip %}} 33 | 如果您在 BLUEPRINT 页面看不到可输入的字段,或者无法滚动,请缩小您的浏览器屏幕 (Control -)。 34 | {{% /notice %}} 35 | 36 | 填写完成后,请点击页面底部的 **SAVE BLUEPRINT** 按钮保存。 37 | -------------------------------------------------------------------------------- /workshop/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/complete_testing.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/complete_testing.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/configure_app_webserver_ip.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/configure_app_webserver_ip.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/data_replication_healthy.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/data_replication_healthy.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/database_update_security_group.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/database_update_security_group.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/disk_settings.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/disk_settings.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/edit_webserver_inbound_rules.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/edit_webserver_inbound_rules.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/ee_credentials.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/ee_credentials.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/finalize_cutover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/finalize_cutover.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/how-it-works.en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/how-it-works.en.jpg -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/install_agent.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/install_agent.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/install_agent_credentials.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/install_agent_credentials.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_cutover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_cutover.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_cutover_popup.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_cutover_popup.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_settings_about.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_settings_about.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_settings_general.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_settings_general.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_settings_general_disable_rightsizing.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_settings_general_disable_rightsizing.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_settings_select.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_settings_select.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_status_launched.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_status_launched.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_template_new_version.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_template_new_version.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_template_select_instance.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_template_select_instance.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_template_select_subnet.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_template_select_subnet.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_template_tags.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_template_tags.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_template_update_version.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_template_update_version.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_template_update_version_popup.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_template_update_version_popup.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/launch_test_instance.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/launch_test_instance.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/manage_tags_1.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/manage_tags_1.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/migration_dashboard.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/migration_dashboard.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/ready_for_cutover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/ready_for_cutover.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/ready_for_cutover_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/ready_for_cutover_confirm.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/replication_finished.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/replication_finished.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/replication_settings.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/replication_settings.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/select_server.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/select_server.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/server_info.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/server_info.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/server_info_recommendation.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/server_info_recommendation.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/setup.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/setup.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/source_servers.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/source_servers.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/testing.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/testing.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/testing_job_details.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/testing_job_details.en.png -------------------------------------------------------------------------------- /workshop/static/app_mig_serv/testing_job_id.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/app_mig_serv/testing_job_id.en.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-app-health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-app-health.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-app-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-app-settings.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-app-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-app-version.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-create-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-create-app.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-create-env-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-create-env-console.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-env-health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-env-health.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-env-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-env-overview.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-environments.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-monitoring.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-process.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-rds-connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-rds-connectivity.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-rds-sg-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-rds-sg-rules.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-rds-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-rds-sg.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-s3-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-s3-settings.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-settings-network-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-settings-network-details.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-settings-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-settings-network.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-settings-software-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-settings-software-details.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/eb-settings-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/eb-settings-software.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/s3-create-sourcecodebucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/s3-create-sourcecodebucket.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/s3-object-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/s3-object-url.png -------------------------------------------------------------------------------- /workshop/static/beanstalk/source-bundle-in-s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/beanstalk/source-bundle-in-s3.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Agent-install-commands.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Agent-install-commands.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Agent-install-detailed.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Agent-install-detailed.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Agent-install-detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Agent-install-detailed.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Agent-install-detailed.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Agent-install-detailed.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Agent-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Agent-install.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-BluePrints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-BluePrints.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Cutover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Cutover.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Cutover.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Cutover.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-Replication-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-Replication-setting.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-configure-AWS-Cred.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-configure-AWS-Cred.png.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-console-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-console-credentials.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-create-project-1.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-create-project-1.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-create-project-2.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-create-project-2.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-credentials.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-job-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-job-progress.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-job-progress.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-job-progress.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-login.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-server-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-server-progress.png -------------------------------------------------------------------------------- /workshop/static/ce/CE-server-progress.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/CE-server-progress.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/Centos-Ip-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/Centos-Ip-details.png -------------------------------------------------------------------------------- /workshop/static/ce/Centos-pem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/Centos-pem.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-blueprint-details.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-blueprint-details.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-blueprint-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-blueprint-details.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-blueprint-details.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-blueprint-details.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-home.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-home.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-home.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-self-service-accesskeys.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-self-service-accesskeys.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-self-service-accesskeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-self-service-accesskeys.png -------------------------------------------------------------------------------- /workshop/static/ce/ce-self-service-accesskeys.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/ce-self-service-accesskeys.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/database_update_security_group.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/database_update_security_group.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/database_update_security_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/database_update_security_group.png -------------------------------------------------------------------------------- /workshop/static/ce/database_update_security_group.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/database_update_security_group.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/edit_webserver_inbound_rules.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/edit_webserver_inbound_rules.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/edit_webserver_inbound_rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/edit_webserver_inbound_rules.png -------------------------------------------------------------------------------- /workshop/static/ce/edit_webserver_inbound_rules.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/edit_webserver_inbound_rules.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/webserver-self-paced-info.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/webserver-self-paced-info.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/webserver-self-paced-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/webserver-self-paced-info.png -------------------------------------------------------------------------------- /workshop/static/ce/webserver-self-paced-info.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/webserver-self-paced-info.zh.png -------------------------------------------------------------------------------- /workshop/static/ce/webserver_details.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/webserver_details.ja.png -------------------------------------------------------------------------------- /workshop/static/ce/webserver_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/webserver_details.png -------------------------------------------------------------------------------- /workshop/static/ce/webserver_details.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ce/webserver_details.zh.png -------------------------------------------------------------------------------- /workshop/static/cleanup/ce-stop-remove-from-console.eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/ce-stop-remove-from-console.eng.png -------------------------------------------------------------------------------- /workshop/static/cleanup/ce-stop-remove-from-console.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/ce-stop-remove-from-console.zh.png -------------------------------------------------------------------------------- /workshop/static/cleanup/db-delete-confirm.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/db-delete-confirm.en.png -------------------------------------------------------------------------------- /workshop/static/cleanup/db-delete-confirm.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/db-delete-confirm.ja.png -------------------------------------------------------------------------------- /workshop/static/cleanup/db-delete-confirm.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/db-delete-confirm.zh.png -------------------------------------------------------------------------------- /workshop/static/cleanup/db-remove-deletion-protection.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/db-remove-deletion-protection.en.png -------------------------------------------------------------------------------- /workshop/static/cleanup/db-remove-deletion-protection.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/db-remove-deletion-protection.ja.png -------------------------------------------------------------------------------- /workshop/static/cleanup/db-remove-deletion-protection.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/db-remove-deletion-protection.zh.png -------------------------------------------------------------------------------- /workshop/static/cleanup/dms-dashboard-final.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/dms-dashboard-final.en.png -------------------------------------------------------------------------------- /workshop/static/cleanup/dms-dashboard-final.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/dms-dashboard-final.ja.png -------------------------------------------------------------------------------- /workshop/static/cleanup/dms-dashboard-final.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/cleanup/dms-dashboard-final.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/1.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/1.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/1.png -------------------------------------------------------------------------------- /workshop/static/db-mig/1.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/1.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/3_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/3_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/3_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/3_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/3_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/3_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/4_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/4_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/4_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/4_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/4_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/4_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/5_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/5_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/5_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/5_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/5_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/5_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/6_2_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/6_2_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/6_2_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/6_2_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/6_2_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/6_2_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/6_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/6_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/6_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/6_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/6_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/6_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/7_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/7_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/8_2_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/8_2_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/8_2_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/8_2_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/8_2_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/8_2_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/8_db.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/8_db.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/8_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/8_db.png -------------------------------------------------------------------------------- /workshop/static/db-mig/8_db.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/8_db.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Create-task-1.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Create-task-1.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Create-task-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Create-task-1.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Create-task-1.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Create-task-1.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Create-task-3.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Create-task-3.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Create-task-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Create-task-3.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Create-task-3.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Create-task-3.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/DMS-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/DMS-overview.png -------------------------------------------------------------------------------- /workshop/static/db-mig/DMS-overview.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/DMS-overview.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Replication-instance-create.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Replication-instance-create.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Replication-instance-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Replication-instance-create.png -------------------------------------------------------------------------------- /workshop/static/db-mig/Replication-instance-create.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/Replication-instance-create.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/advanced-security.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/advanced-security.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/advanced-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/advanced-security.png -------------------------------------------------------------------------------- /workshop/static/db-mig/advanced-security.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/advanced-security.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/bin-log-verificaion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/bin-log-verificaion.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-db-select-template.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-db-select-template.en.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-db-select-template.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-db-select-template.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-db-select-template.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-db-select-template.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-db-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-db-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-task-2.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-task-2.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-task-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-task-2.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-task-2.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-task-2.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-task-4.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-task-4.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-task-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-task-4.png -------------------------------------------------------------------------------- /workshop/static/db-mig/create-task-4.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/create-task-4.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-server-ssh-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-server-ssh-event.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-server-ssh-self-paced.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-server-ssh-self-paced.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-server-ssh-self-paced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-server-ssh-self-paced.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-server-ssh-self-paced.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-server-ssh-self-paced.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-sg-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-sg-update.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-subnet-group.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-subnet-group.en.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-subnet-group.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-subnet-group.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/db-subnet-group.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/db-subnet-group.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/replication-instance-conf.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/replication-instance-conf.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/replication-instance-conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/replication-instance-conf.png -------------------------------------------------------------------------------- /workshop/static/db-mig/replication-instance-conf.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/replication-instance-conf.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/ri-network-conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/ri-network-conf.png -------------------------------------------------------------------------------- /workshop/static/db-mig/ri-network-conf.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/ri-network-conf.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/ri-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/ri-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/ri-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/ri-sg.png -------------------------------------------------------------------------------- /workshop/static/db-mig/ri-sg.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/ri-sg.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/security-group-inbound-rule.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/security-group-inbound-rule.en.png -------------------------------------------------------------------------------- /workshop/static/db-mig/security-group-inbound-rule.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/security-group-inbound-rule.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/security-group-inbound-rule.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/security-group-inbound-rule.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/security-group-new.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/security-group-new.en.png -------------------------------------------------------------------------------- /workshop/static/db-mig/source-endpoint.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/source-endpoint.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/source-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/source-endpoint.png -------------------------------------------------------------------------------- /workshop/static/db-mig/source-endpoint.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/source-endpoint.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/subnet-group.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/subnet-group.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/subnet-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/subnet-group.png -------------------------------------------------------------------------------- /workshop/static/db-mig/subnet-group.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/subnet-group.zh.png -------------------------------------------------------------------------------- /workshop/static/db-mig/test-source-endpoint.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/test-source-endpoint.ja.png -------------------------------------------------------------------------------- /workshop/static/db-mig/test-source-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/test-source-endpoint.png -------------------------------------------------------------------------------- /workshop/static/db-mig/test-source-endpoint.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/db-mig/test-source-endpoint.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-container-details.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-container-details.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-container-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-container-details.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-container-details.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-container-details.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-container.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-container.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-container.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-container.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-container.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-volume.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-volume.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-volume.png -------------------------------------------------------------------------------- /workshop/static/ecs/add-volume.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/add-volume.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/awsvpc-trunking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/awsvpc-trunking.png -------------------------------------------------------------------------------- /workshop/static/ecs/cloudwatch-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/cloudwatch-insights.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-cluster.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-cluster.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-cluster.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-cluster.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-cluster.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-lb.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-lb.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-lb.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-lb.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-lb.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-network-svc.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-network-svc.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-network-svc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-network-svc.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-network-svc.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-network-svc.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-routing.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-routing.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-routing.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-routing.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-routing.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-service.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-service.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-service.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-service.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-service.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-task-def.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-task-def.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-task-def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-task-def.png -------------------------------------------------------------------------------- /workshop/static/ecs/configure-task-def.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/configure-task-def.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/container-lb-details.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/container-lb-details.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/container-lb-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/container-lb-details.png -------------------------------------------------------------------------------- /workshop/static/ecs/container-lb-details.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/container-lb-details.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/container-lb.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/container-lb.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/container-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/container-lb.png -------------------------------------------------------------------------------- /workshop/static/ecs/container-lb.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/container-lb.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-cluster.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-cluster.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-cluster.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-cluster.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-cluster.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-ecs-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-ecs-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-configure-mount-target.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-configure-mount-target.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-configure-mount-targets.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-configure-mount-targets.en.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-configure-mount-targets.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-configure-mount-targets.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-file-system-id.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-file-system-id.en.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-file-system-id.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-file-system-id.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-file-system-id.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-file-system-id.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-mount-target.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-mount-target.en.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-mount-target.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-mount-target.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-mount-target.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-mount-target.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-name.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-name.en.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-name.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-name.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-name.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-name.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-select.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-select.en.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-select.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-select.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-select.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-select.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-efs.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-efs.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-lb-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-lb-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-lb-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-lb-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-lb-sg.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-lb-sg.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-lb.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-lb.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-lb.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-lb.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-lb.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-service.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-service.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-service.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-service.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-service.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-task-def.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-task-def.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-task-def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-task-def.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-task-def.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-task-def.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/create-task-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/create-task-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/ecs-ec2type-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/ecs-ec2type-arch.png -------------------------------------------------------------------------------- /workshop/static/ecs/ecs-networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/ecs-networking.png -------------------------------------------------------------------------------- /workshop/static/ecs/ecs-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/ecs-overview.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-ecs-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-ecs-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-efs-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-efs-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-efs-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-efs-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-efs-sg.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-efs-sg.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-lb-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-lb-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-lb-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-lb-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-lb-sg.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-lb-sg.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-task-sg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-task-sg-1.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-task-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-task-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-task-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-task-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/edit-task-sg.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/edit-task-sg.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-details.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-details.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-details.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-details.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-details.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-enc.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-enc.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-enc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-enc.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-enc.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-enc.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-mount.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-mount.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-mount.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-mount.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-mount.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-review.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-review.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-review.png -------------------------------------------------------------------------------- /workshop/static/ecs/efs-review.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/efs-review.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/environment-variables.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/environment-variables.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/environment-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/environment-variables.png -------------------------------------------------------------------------------- /workshop/static/ecs/environment-variables.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/environment-variables.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/overview-fargate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/overview-fargate.png -------------------------------------------------------------------------------- /workshop/static/ecs/parameter-details.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/parameter-details.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/parameter-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/parameter-details.png -------------------------------------------------------------------------------- /workshop/static/ecs/parameter-details.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/parameter-details.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/service-discovery.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/service-discovery.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/service-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/service-discovery.png -------------------------------------------------------------------------------- /workshop/static/ecs/service-discovery.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/service-discovery.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/storage-logging.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/storage-logging.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/storage-logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/storage-logging.png -------------------------------------------------------------------------------- /workshop/static/ecs/storage-logging.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/storage-logging.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-autoscaling-policy.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-autoscaling-policy.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-autoscaling-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-autoscaling-policy.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-autoscaling-policy.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-autoscaling-policy.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-autoscaling.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-autoscaling.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-autoscaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-autoscaling.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-autoscaling.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-autoscaling.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-lb.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-lb.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-lb.png -------------------------------------------------------------------------------- /workshop/static/ecs/svc-lb.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/svc-lb.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/task-size.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/task-size.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/task-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/task-size.png -------------------------------------------------------------------------------- /workshop/static/ecs/task-size.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/task-size.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/update-db-sg.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/update-db-sg.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/update-db-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/update-db-sg.png -------------------------------------------------------------------------------- /workshop/static/ecs/update-db-sg.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/update-db-sg.zh.png -------------------------------------------------------------------------------- /workshop/static/ecs/volumes.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/volumes.ja.png -------------------------------------------------------------------------------- /workshop/static/ecs/volumes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/volumes.png -------------------------------------------------------------------------------- /workshop/static/ecs/volumes.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/ecs/volumes.zh.png -------------------------------------------------------------------------------- /workshop/static/images/apn-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/images/apn-logo.jpg -------------------------------------------------------------------------------- /workshop/static/images/aws-open-source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/images/aws-open-source.jpg -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-launch-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-launch-stack.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step0.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step0.en.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step1.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step1.en.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step1.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step1.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step1.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step1.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step2.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step2.en.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step2.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step2.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step2.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step2.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step4.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step4.en.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step4.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step4.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/cloudformation-step4.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/cloudformation-step4.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/dashboard-aws-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/dashboard-aws-console.png -------------------------------------------------------------------------------- /workshop/static/intro/dashboard-console-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/dashboard-console-login.png -------------------------------------------------------------------------------- /workshop/static/intro/dashboard-hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/dashboard-hash.png -------------------------------------------------------------------------------- /workshop/static/intro/migrate-with-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migrate-with-aws.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-choose-home-region.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-choose-home-region.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-choose-home-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-choose-home-region.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-choose-home-region.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-choose-home-region.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-connect-dms-connected.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-connect-dms-connected.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-connect-dms-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-connect-dms-connected.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-connect-dms-connected.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-connect-dms-connected.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-connect-dms.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-connect-dms.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-connect-dms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-connect-dms.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-connect-dms.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-connect-dms.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-hub-dashboard.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-hub-dashboard.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/migration-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/migration-process.png -------------------------------------------------------------------------------- /workshop/static/intro/option-aws-led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/option-aws-led.png -------------------------------------------------------------------------------- /workshop/static/intro/option-self-paced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/option-self-paced.png -------------------------------------------------------------------------------- /workshop/static/intro/self-service-env-awsconsole-info.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/self-service-env-awsconsole-info.en.png -------------------------------------------------------------------------------- /workshop/static/intro/self-service-env-awsconsole-info.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/self-service-env-awsconsole-info.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/self-service-env-awsconsole-info.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/self-service-env-awsconsole-info.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/self-service-env-cli-info.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/self-service-env-cli-info.en.png -------------------------------------------------------------------------------- /workshop/static/intro/self-service-env-cli-info.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/self-service-env-cli-info.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/self-service-env-cli-info.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/self-service-env-cli-info.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/source-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/source-env.png -------------------------------------------------------------------------------- /workshop/static/intro/source-env.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/source-env.zh.png -------------------------------------------------------------------------------- /workshop/static/intro/src-env-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/src-env-output.png -------------------------------------------------------------------------------- /workshop/static/intro/target-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/target-env.png -------------------------------------------------------------------------------- /workshop/static/intro/target-vpc.ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/target-vpc.ja.png -------------------------------------------------------------------------------- /workshop/static/intro/target-vpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/target-vpc.png -------------------------------------------------------------------------------- /workshop/static/intro/target-vpc.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/intro/target-vpc.zh.png -------------------------------------------------------------------------------- /workshop/static/opt/aws-ref-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/opt/aws-ref-arch.png -------------------------------------------------------------------------------- /workshop/static/server_migration_overview/migration_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/static/server_migration_overview/migration_options.png -------------------------------------------------------------------------------- /workshop/themes/learn/.editorconfig: -------------------------------------------------------------------------------- 1 | # https://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | trim_trailing_whitespace = true 11 | 12 | [*.js] 13 | insert_final_newline = true 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | public/ 3 | exampleSite/public 4 | -------------------------------------------------------------------------------- /workshop/themes/learn/.grenrc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | dataSource: "prs" 3 | prefix: "v" 4 | onlyMilestones: false 5 | changelogFilename: "CHANGELOG.md" 6 | includeMessages: "all" 7 | ignoreIssuesWith: 8 | - "support" 9 | ignoreLabels: 10 | - "duplicate" 11 | - "invalid" 12 | - "wontfix" 13 | groupBy: 14 | New features: 15 | - "feature" 16 | Bug Fixes: 17 | - "bug" 18 | Enhancements: 19 | - "enhancement" 20 | Internationalisation: 21 | - "i18n" 22 | Theme Meta: 23 | - "meta" 24 | Uncategorised: 25 | - "closed" 26 | -------------------------------------------------------------------------------- /workshop/themes/learn/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Grav 4 | Copyright (c) 2016 MATHIEU CORNIC 5 | Copyright (c) 2017 Valere JEANTET 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy of 8 | this software and associated documentation files (the "Software"), to deal in 9 | the Software without restriction, including without limitation the rights to 10 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 11 | the Software, and to permit persons to whom the Software is furnished to do so, 12 | subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 19 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 20 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 21 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 22 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /workshop/themes/learn/archetypes/chapter.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "{{ replace .Name "-" " " | title }}" 3 | date = {{ .Date }} 4 | weight = 5 5 | chapter = true 6 | pre = "X. " 7 | +++ 8 | 9 | Lorem Ipsum. -------------------------------------------------------------------------------- /workshop/themes/learn/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "{{ replace .Name "-" " " | title }}" 3 | date = {{ .Date }} 4 | weight = 5 5 | +++ 6 | 7 | Lorem Ipsum. -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/ar.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "...البحث" 3 | 4 | [Clear-History] 5 | other = "مسح السجل" 6 | 7 | [Attachments-label] 8 | other = "مرفقات" 9 | 10 | [title-404] 11 | other = "خطأ" 12 | 13 | [message-404] 14 | other = ".¯\\_(ツ)_/¯أوبس. يبدو أن هذه الصفحة غير موجودة" 15 | 16 | [Go-to-homepage] 17 | other = "الذهاب إلى الصفحة الرئيسية" 18 | 19 | [Edit-this-page] 20 | other = "تعديل هذه الصفحة" 21 | 22 | [Shortcuts-Title] 23 | other = "المزيد" 24 | 25 | [Expand-title] 26 | other = "...قم بتوسيع" -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/de.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Suchen..." 3 | 4 | [Clear-History] 5 | other = "Verlauf löschen" 6 | 7 | [Attachments-label] 8 | other = "Anhänge" 9 | 10 | [title-404] 11 | other = "Fehler" 12 | 13 | [message-404] 14 | other = "Huch. Diese Seite scheint nicht zu existieren ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Gehe zur Homepage" 18 | 19 | [Edit-this-page] 20 | other = "Bearbeite diese Seite" 21 | 22 | [Shortcuts-Title] 23 | other = "Mehr" 24 | 25 | [Expand-title] 26 | other = "Erweitere mich..." -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/en.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Search..." 3 | 4 | [Clear-History] 5 | other = "Clear History" 6 | 7 | [Attachments-label] 8 | other = "Attachments" 9 | 10 | [title-404] 11 | other = "Error" 12 | 13 | [message-404] 14 | other = "Woops. Looks like this page doesn't exist ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Go to homepage" 18 | 19 | [Edit-this-page] 20 | other = "Edit this page" 21 | 22 | [Shortcuts-Title] 23 | other = "More" 24 | 25 | [Expand-title] 26 | other = "Expand me..." -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/es.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Buscar..." 3 | 4 | [Clear-History] 5 | other = "Borrar Historial" 6 | 7 | [Attachments-label] 8 | other = "Adjuntos" 9 | 10 | [title-404] 11 | other = "Error" 12 | 13 | [message-404] 14 | other = "Ups. Parece que la página no existe ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Ir al inicio" 18 | 19 | [Edit-this-page] 20 | other = "Editar esta página" 21 | 22 | [Shortcuts-Title] 23 | other = "Más" 24 | 25 | [Expand-title] 26 | other = "Expandir..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/fr.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Rechercher..." 3 | 4 | [Clear-History] 5 | other = "Supprimer l'historique" 6 | 7 | [Attachments-label] 8 | other = "Pièces jointes" 9 | 10 | [title-404] 11 | other = "Erreur" 12 | 13 | [message-404] 14 | other = "Oups. On dirait que cette page n'existe pas ¯\\_(ツ)_/¯" 15 | 16 | [Go-to-homepage] 17 | other = "Vers la page d'accueil" 18 | 19 | [Edit-this-page] 20 | other = "Modifier la page" 21 | 22 | [Shortcuts-Title] 23 | other = "Aller plus loin" 24 | 25 | [Expand-title] 26 | other = "Déroulez-moi..." -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/hi.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "खोजे..." 3 | 4 | [Clear-History] 5 | other = "इतिहास मिटाएँ" 6 | 7 | [Attachments-label] 8 | other = "संलग्नंक (अटैचमेंट)" 9 | 10 | [title-404] 11 | other = "त्रुटि" 12 | 13 | [message-404] 14 | other = "यह पृष्ठ अभि अनुपलब्ध है!" 15 | 16 | [Go-to-homepage] 17 | other = "मुख्य पृष्ठ पर जाऐ" 18 | 19 | [Edit-this-page] 20 | other = "यह पृष्ठ संपादित करें" 21 | 22 | [Shortcuts-Title] 23 | other = "अधिक सामग्री दिखाएं" 24 | 25 | [Expand-title] 26 | other = "विस्तार करे..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/id.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Telusuri..." 3 | 4 | [Clear-History] 5 | other = "Bersihkan Riwayat" 6 | 7 | [Attachments-label] 8 | other = "Lampiran" 9 | 10 | [title-404] 11 | other = "Kesalahan" 12 | 13 | [message-404] 14 | other = "Oops. Sepertinya halaman ini tidak ada ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Ke halaman depan" 18 | 19 | [Edit-this-page] 20 | other = "Edit halaman ini" 21 | 22 | [Shortcuts-Title] 23 | other = "Lainnya" 24 | 25 | [Expand-title] 26 | other = "Bentangkan..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/nl.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Zoeken..." 3 | 4 | [Clear-History] 5 | other = "Wis geschiedenis" 6 | 7 | [Attachments-label] 8 | other = "Bijlagen" 9 | 10 | [title-404] 11 | other = "Error" 12 | 13 | [message-404] 14 | other = "Blijkbaar bestaat deze pagina niet ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Naar startpagina" 18 | 19 | [Edit-this-page] 20 | other = "Deze pagina bewerken" 21 | 22 | [Shortcuts-Title] 23 | other = "Snelkoppelingen" 24 | 25 | [Expand-title] 26 | other = "Lees meer..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/pt.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Procurar..." 3 | 4 | [Clear-History] 5 | other = "Limpar Histórico" 6 | 7 | [Attachments-label] 8 | other = "Anexos" 9 | 10 | [title-404] 11 | other = "Erro" 12 | 13 | [message-404] 14 | other = "Ops. Parece que a página não existe ¯\\_(ツ)_/¯." 15 | 16 | [Go-to-homepage] 17 | other = "Ir para o início" 18 | 19 | [Edit-this-page] 20 | other = "Editar esta página" 21 | 22 | [Shortcuts-Title] 23 | other = "Mais" 24 | 25 | [Expand-title] 26 | other = "Expandir..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/i18n/tr.toml: -------------------------------------------------------------------------------- 1 | [Search-placeholder] 2 | other = "Ara..." 3 | 4 | [Clear-History] 5 | other = "Geçmişi Temizle" 6 | 7 | [Attachments-label] 8 | other = "Ekler" 9 | 10 | [title-404] 11 | other = "Hata" 12 | 13 | [message-404] 14 | other = "Uups. Görünüşe göre böyle bir sayfa yok ¯\\_(ツ)_/¯" 15 | 16 | [Go-to-homepage] 17 | other = "Anasayfaya dön" 18 | 19 | [Edit-this-page] 20 | other = "Sayfayı düzenle" 21 | 22 | [Shortcuts-Title] 23 | other = "Dahası Var" 24 | 25 | [Expand-title] 26 | other = "Genişlet..." 27 | -------------------------------------------------------------------------------- /workshop/themes/learn/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/images/screenshot.png -------------------------------------------------------------------------------- /workshop/themes/learn/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/images/tn.png -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ if eq .Kind "section" }} 4 | {{ .Content }} 5 | {{end}} 6 | 7 | {{ if or (eq .Kind "taxonomy") (eq .Kind "taxonomyTerm") }} 8 | 13 | {{end}} 14 | 15 | 21 | 22 | {{ partial "footer.html" . }} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | {{ .Content }} 4 | 5 | 11 | 12 | 13 | {{ partial "footer.html" . }} 14 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ partial "header.html" . }} 2 | 3 | navigation 4 | 5 | 6 | {{.Site.Home.Content}} 7 | 8 | {{ partial "footer.html" . }} 9 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/index.json: -------------------------------------------------------------------------------- 1 | [{{ range $index, $page := .Site.Pages }} 2 | {{- if ne $page.Type "json" -}} 3 | {{- if and $index (gt $index 0) -}},{{- end }} 4 | { 5 | "uri": "{{ $page.Permalink }}", 6 | "title": "{{ htmlEscape $page.Title}}", 7 | "tags": [{{ range $tindex, $tag := $page.Params.tags }}{{ if $tindex }}, {{ end }}"{{ $tag| htmlEscape }}"{{ end }}], 8 | "description": "{{ htmlEscape .Description}}", 9 | "content": {{$page.Plain | jsonify}} 10 | } 11 | {{- end -}} 12 | {{- end -}}] -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/custom-comments.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/layouts/partials/custom-footer.html -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/custom-header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/favicon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/logo.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
5 | 6 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/meta.html: -------------------------------------------------------------------------------- 1 | 2 | {{ with .Site.Params.author }}{{ end }} 3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/search.html: -------------------------------------------------------------------------------- 1 | 6 | {{ $assetBusting := not .Site.Params.disableAssetsBusting }} 7 | 8 | 9 | 16 | 17 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/tags.html: -------------------------------------------------------------------------------- 1 | {{ if .Params.tags }} 2 |
3 | {{range .Params.tags}} 4 | {{ . }} 5 | {{end}} 6 |
7 | {{end}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/partials/toc.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ .TableOfContents }} 4 |
5 |
6 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/attachments.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
3 | 7 | {{if eq .Page.File.BaseFileName "index"}} 8 | {{$.Scratch.Add "filesName" "files"}} 9 | {{else}} 10 | {{$.Scratch.Add "filesName" (printf "%s.files" .Page.File.BaseFileName)}} 11 | {{end}} 12 |
13 | {{ range (readDir (printf "./content/%s%s" .Page.File.Dir ($.Scratch.Get "filesName")) ) }} 14 | {{ $fileDir := replace $.Page.File.Dir "\\" "/" }} 15 | {{if ($.Get "pattern")}} 16 | {{if (findRE ($.Get "pattern") .Name)}} 17 |
  • 18 | 19 | {{.Name}} 20 | 21 | ({{div .Size 1024 }} kb) 22 |
  • 23 | {{end}} 24 | {{else}} 25 |
  • 26 | 27 | {{.Name}} 28 | 29 | ({{div .Size 1024 }} kb) 30 |
  • 31 | {{end}} 32 | {{end}} 33 |
    34 | {{.Inner}} 35 |
    36 | 37 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | 3 | {{ $icon := .Get "icon" }} 4 | {{ $iconposition := .Get "icon-position" }} 5 | {{ if ($icon) }} 6 | {{ if or (not ($iconposition)) (eq $iconposition "left") }} 7 | 8 | {{ end }} 9 | {{ end }} 10 | {{ .Inner }} 11 | {{ if and ($icon) (eq $iconposition "right")}} 12 | 13 | {{ end }} 14 | 15 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
    3 |
    4 | 5 | 6 | {{$expandMessage := T "Expand-title"}} 7 | {{ if .IsNamedParams }} 8 | {{.Get "default" | default $expandMessage}} 9 | {{else}} 10 | {{.Get 0 | default $expandMessage}} 11 | {{end}} 12 | 13 |
    14 | 17 |
    -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/img.html: -------------------------------------------------------------------------------- 1 | {{ $img := $.Page.Resources.GetMatch (.Get 0)}} 2 |
    3 | {{(.Get 1)}} 4 |
    -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
    {{ safeHTML .Inner }}
    3 | -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/notice.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | {{ if eq .Site.Language.Lang "ja" }} 3 |
    {{ .Inner }}
    4 | {{ else }} 5 |
    {{ .Inner }}
    6 | {{ end }} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/ref.html: -------------------------------------------------------------------------------- 1 | {{- if in (.Get 0) "/_index.md" -}} 2 | {{- $paths := (split (.Get 0) "_index.md") -}} 3 | {{- $pagepath := index $paths 0 -}} 4 | {{- $anchor := index $paths 1 -}} 5 | {{- with .Site.GetPage "section" (trim $pagepath "/") -}} 6 | {{- ( printf "%s%s" $pagepath $anchor ) | relLangURL -}} 7 | {{- end -}} 8 | {{- else -}} 9 | {{- with .Site.GetPage "section" (.Get 0) }} 10 | {{- .RelPermalink -}} 11 | {{- else -}} 12 | {{- .Get 0 | relref .Page -}} 13 | {{- end -}} 14 | {{- end -}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/relref.html: -------------------------------------------------------------------------------- 1 | {{- if in (.Get 0) "/_index.md" -}} 2 | {{- $paths := (split (.Get 0) "_index.md") -}} 3 | {{- $pagepath := index $paths 0 -}} 4 | {{- $anchor := index $paths 1 -}} 5 | {{- with .Site.GetPage "section" (trim $pagepath "/") -}} 6 | {{- ( printf "%s%s" $pagepath $anchor ) | relLangURL -}} 7 | {{- end -}} 8 | {{- else -}} 9 | {{- with .Site.GetPage "section" (.Get 0) }} 10 | {{- .RelPermalink -}} 11 | {{- else -}} 12 | {{- .Get 0 | relref .Page -}} 13 | {{- end -}} 14 | {{- end -}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/siteparam.html: -------------------------------------------------------------------------------- 1 | {{- $paramName := (.Get 0) -}} 2 | {{- $siteParams := .Site.Params -}} 3 | {{- with $paramName -}} 4 | {{- with $siteParams -}} 5 | {{- index . (lower $paramName) -}} 6 | {{- end -}} 7 | {{- end -}} -------------------------------------------------------------------------------- /workshop/themes/learn/layouts/shortcodes/siteurl.html: -------------------------------------------------------------------------------- 1 | {{ .Page.Site.BaseURL }} -------------------------------------------------------------------------------- /workshop/themes/learn/static/css/auto-complete.css: -------------------------------------------------------------------------------- 1 | .autocomplete-suggestions { 2 | text-align: left; 3 | cursor: default; 4 | border: 1px solid #ccc; 5 | border-top: 0; 6 | background: #fff; 7 | box-shadow: -1px 1px 3px rgba(0,0,0,.1); 8 | 9 | /* core styles should not be changed */ 10 | position: absolute; 11 | display: none; 12 | z-index: 9999; 13 | max-height: 254px; 14 | overflow: hidden; 15 | overflow-y: auto; 16 | box-sizing: border-box; 17 | 18 | } 19 | .autocomplete-suggestion { 20 | position: relative; 21 | cursor: pointer; 22 | padding: 7px; 23 | line-height: 23px; 24 | white-space: nowrap; 25 | overflow: hidden; 26 | text-overflow: ellipsis; 27 | color: #333; 28 | } 29 | 30 | .autocomplete-suggestion b { 31 | font-weight: normal; 32 | color: #1f8dd6; 33 | } 34 | 35 | .autocomplete-suggestion.selected { 36 | background: #333; 37 | color: #fff; 38 | } 39 | 40 | .autocomplete-suggestion:hover { 41 | background: #444; 42 | color: #fff; 43 | } 44 | 45 | .autocomplete-suggestion > .context { 46 | font-size: 12px; 47 | } 48 | -------------------------------------------------------------------------------- /workshop/themes/learn/static/css/tags.css: -------------------------------------------------------------------------------- 1 | /* Tags */ 2 | 3 | #head-tags{ 4 | margin-left:1em; 5 | margin-top:1em; 6 | } 7 | 8 | #body .tags a.tag-link { 9 | display: inline-block; 10 | line-height: 2em; 11 | font-size: 0.8em; 12 | position: relative; 13 | margin: 0 16px 8px 0; 14 | padding: 0 10px 0 12px; 15 | background: #8451a1; 16 | 17 | -webkit-border-bottom-right-radius: 3px; 18 | border-bottom-right-radius: 3px; 19 | -webkit-border-top-right-radius: 3px; 20 | border-top-right-radius: 3px; 21 | 22 | -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2); 23 | box-shadow: 0 1px 2px rgba(0,0,0,0.2); 24 | color: #fff; 25 | } 26 | 27 | #body .tags a.tag-link:before { 28 | content: ""; 29 | position: absolute; 30 | top:0; 31 | left: -1em; 32 | width: 0; 33 | height: 0; 34 | border-color: transparent #8451a1 transparent transparent; 35 | border-style: solid; 36 | border-width: 1em 1em 1em 0; 37 | } 38 | 39 | #body .tags a.tag-link:after { 40 | content: ""; 41 | position: absolute; 42 | top: 10px; 43 | left: 1px; 44 | width: 5px; 45 | height: 5px; 46 | -webkit-border-radius: 50%; 47 | border-radius: 100%; 48 | background: #fff; 49 | } 50 | -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Inconsolata.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Inconsolata.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Inconsolata.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-Normal-webfont.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_200.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_200.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_200.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_200.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_300.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_300.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_300.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_300.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_500.eot -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_500.ttf -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_500.woff -------------------------------------------------------------------------------- /workshop/themes/learn/static/fonts/Work_Sans_500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/fonts/Work_Sans_500.woff2 -------------------------------------------------------------------------------- /workshop/themes/learn/static/images/clippy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workshop/themes/learn/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/application-migration-with-aws-workshop/6d6b4d7174b8ec8b3f025da63b97602624eda217/workshop/themes/learn/static/images/logo.png -------------------------------------------------------------------------------- /workshop/themes/learn/theme.toml: -------------------------------------------------------------------------------- 1 | # theme.toml template for a Hugo theme 2 | # See https://github.com/spf13/hugoThemes#themetoml for an example 3 | 4 | name = "Learn" 5 | license = "MIT" 6 | licenselink = "https://github.com/matcornic/hugo-theme-learn/blob/master/LICENSE.md" 7 | description = "Documentation theme for Hugo, based on Grav Learn theme" 8 | homepage = "https://github.com/matcornic/hugo-theme-learn/" 9 | repo = "https://github.com/matcornic/hugo-theme-learn" 10 | tags = ["documentation", "grav", "learn", "doc", "search"] 11 | features = ["documentation", "menu", "nested sections", "search", "mermaid"] 12 | min_version = 0.25 13 | 14 | [author] 15 | name = "Mathieu Cornic" 16 | homepage = "https://matcornic.github.io/" 17 | 18 | [original] 19 | name = "Grav Learn" 20 | homepage = "https://learn.getgrav.org/" 21 | repo = "https://github.com/getgrav/grav-learn" 22 | --------------------------------------------------------------------------------