Skip to content

Commit

Permalink
Change back to us-west-2 because fargate is not available in us-west-1.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveremy committed Oct 14, 2018
1 parent 2f475a4 commit bec4217
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions misc/test/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit bec4217

Please sign in to comment.