From bec4217779a3b9e535882d3db90da9efee06ee21 Mon Sep 17 00:00:00 2001 From: Dave Remy Date: Sun, 14 Oct 2018 10:16:34 -0400 Subject: [PATCH] Change back to us-west-2 because fargate is not available in us-west-1. --- misc/test/examples_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/misc/test/examples_test.go b/misc/test/examples_test.go index 975a8b817..1daeeb8ed 100644 --- a/misc/test/examples_test.go +++ b/misc/test/examples_test.go @@ -152,7 +152,8 @@ func TestExamples(t *testing.T) { Dir: path.Join(cwd, "..", "..", "cloud-js-containers"), SkipBuild: true, Config: map[string]string{ - "aws:region": awsRegion, + // use us-west-2 to assure fargate + "aws:region": "us-west-2", "cloud-aws:useFargate": "true", }, ExtraRuntimeValidation: func(t *testing.T, stack integration.RuntimeValidationStackInfo) { @@ -178,11 +179,11 @@ func TestExamples(t *testing.T) { Dir: path.Join(cwd, "..", "..", "cloud-ts-url-shortener-cache-http"), SkipBuild: true, Config: map[string]string{ - "aws:region": awsRegion, + // use us-west-2 to assure fargate + "aws:region": "us-west-2", "url-shortener-cache:redisPassword": "s3cr7Password", "cloud:provider": "aws", "cloud-aws:useFargate": "true", - "cloud-aws:functionIncludePaths": "true", }, // TODO: This test is not returning a valid payload see issue: https://github.com/pulumi/examples/issues/155 // ExtraRuntimeValidation: func(t *testing.T, stack integration.RuntimeValidationStackInfo) {