Skip to content

Commit

Permalink
chore(csharp): update cdk configs for new csharp CI builds
Browse files Browse the repository at this point in the history
- Added package-lambda script to capitalize-string
- Added context to elasticbeanstalk-environment
- Added DO_NOT_AUTOTEST to static-site (requires user credentials in code)
- Added context to static-site

Fixes aws-samples#228  <!-- Please create a new issue if none exists yet -->
  • Loading branch information
NGL321 authored Jan 16, 2020
1 parent 627de6f commit 16bf831
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions csharp/capitalize-string/cdk.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"app": "dotnet run -p src/CapitalizeString/CapitalizeString.csproj"
}
"app": "dotnet publish -c Release CapitalizeStringHandler/src/CapitalizeStringHandler; dotnet run -p src/CapitalizeString"
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"app": "dotnet run -p src/ElasticbeanstalkEnvironment/ElasticbeanstalkEnvironment.csproj"
"context": {
"platform": "arn:aws:elasticbeanstalk:us-east-1::platform/Tomcat 8 with Java 8 running on 64bit Amazon Linux"
},
"app": "dotnet run -p src/ElasticbeanstalkEnvironment"
}
Empty file.
4 changes: 4 additions & 0 deletions csharp/static-site/cdk.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"context": {
"domain": "mystaticsite.com",
"subdomain": "www"
},
"app": "dotnet run -p src/StaticSite/StaticSite.csproj"
}

0 comments on commit 16bf831

Please sign in to comment.