diff --git a/e2e/app-with-domain/app_with_domain_test.go b/e2e/app-with-domain/app_with_domain_test.go index e5873d3f39c..c4d597959b5 100644 --- a/e2e/app-with-domain/app_with_domain_test.go +++ b/e2e/app-with-domain/app_with_domain_test.go @@ -249,8 +249,8 @@ var _ = Describe("App With Domain", func() { Expect(len(svc.Routes)).To(Equal(2)) wantedURLs := map[string]string{ - "test": "https://test.copilot-e2e-tests.ecs.aws.dev", - "prod": "https://prod.copilot-e2e-tests.ecs.aws.dev", + "test": "https://hello-test-app-domain.copilot-e2e-tests.ecs.aws.dev", + "prod": "https://hello-prod-app-domain.copilot-e2e-tests.ecs.aws.dev", } for _, route := range svc.Routes { // Validate route has the expected HTTPS endpoint. @@ -278,7 +278,7 @@ var _ = Describe("App With Domain", func() { Expect(err).NotTo(HaveOccurred()) Expect(len(svc.Routes)).To(Equal(1)) wantedURLs = map[string]string{ - "test": "https://copilot-e2e-tests.ecs.aws.dev or https://frontend.copilot-e2e-tests.ecs.aws.dev", + "test": "https://copilot-e2e-tests.ecs.aws.dev or https://frontend-app-domain.copilot-e2e-tests.ecs.aws.dev", } // Validate route has the expected HTTPS endpoint. route := svc.Routes[0] diff --git a/e2e/app-with-domain/copilot/frontend/manifest.yml b/e2e/app-with-domain/copilot/frontend/manifest.yml index b794e743128..e02329c5973 100644 --- a/e2e/app-with-domain/copilot/frontend/manifest.yml +++ b/e2e/app-with-domain/copilot/frontend/manifest.yml @@ -9,7 +9,7 @@ image: http: path: '/' - alias: ["frontend.copilot-e2e-tests.ecs.aws.dev", "copilot-e2e-tests.ecs.aws.dev"] + alias: ["frontend-app-domain.copilot-e2e-tests.ecs.aws.dev", "copilot-e2e-tests.ecs.aws.dev"] cpu: 256 memory: 512 diff --git a/e2e/app-with-domain/copilot/hello/manifest.yml b/e2e/app-with-domain/copilot/hello/manifest.yml index 8530fe695c7..03a9af0e69f 100644 --- a/e2e/app-with-domain/copilot/hello/manifest.yml +++ b/e2e/app-with-domain/copilot/hello/manifest.yml @@ -9,7 +9,7 @@ image: http: path: '/' - alias: test.copilot-e2e-tests.ecs.aws.dev + alias: hello-test-app-domain.copilot-e2e-tests.ecs.aws.dev cpu: 256 memory: 512 @@ -18,4 +18,4 @@ count: 1 environments: prod: http: - alias: prod.copilot-e2e-tests.ecs.aws.dev \ No newline at end of file + alias: hello-prod-app-domain.copilot-e2e-tests.ecs.aws.dev \ No newline at end of file diff --git a/e2e/import-certs/copilot/frontend/manifest.yml b/e2e/import-certs/copilot/frontend/manifest.yml index a36d1de629f..1df626181a2 100644 --- a/e2e/import-certs/copilot/frontend/manifest.yml +++ b/e2e/import-certs/copilot/frontend/manifest.yml @@ -8,7 +8,7 @@ image: http: path: '/' - alias: "test.copilot-e2e-tests.ecs.aws.dev" + alias: "frontend-test-imported-cert.copilot-e2e-tests.ecs.aws.dev" hosted_zone: "Z0512687YJJFTKMRQUQR" cpu: 256 diff --git a/e2e/import-certs/import_cert_test.go b/e2e/import-certs/import_cert_test.go index 2cea112868d..d8be6daef5e 100644 --- a/e2e/import-certs/import_cert_test.go +++ b/e2e/import-certs/import_cert_test.go @@ -101,7 +101,7 @@ var _ = Describe("Import Certificates", func() { Expect(len(svc.Routes)).To(Equal(1)) wantedURLs := map[string]string{ - "test": "https://test.copilot-e2e-tests.ecs.aws.dev", + "test": "https://frontend-test-imported-cert.copilot-e2e-tests.ecs.aws.dev", } for _, route := range svc.Routes { // Validate route has the expected HTTPS endpoint.