Skip to content

Commit

Permalink
Bootstrap file usage
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed May 23, 2024
1 parent aefb911 commit 599faf4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/terraform-aws-lambda-example/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
The lambda executable `handler` was built using

``` shell
go build lambda.go
go build bootstrap.go
```
4 changes: 2 additions & 2 deletions modules/aws/rds_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestGetRecommendedRdsInstanceTypeHappyPath(t *testing.T) {
databaseEngine: "mysql",
engineMajorVersion: "8.0",
instanceTypes: []string{"db.t2.micro", "db.t3.micro", "db.t3.small"},
expected: "db.t2.micro",
expected: "db.t3.micro",
},
{
name: "EU region, postgres, 2nd offering available based on region",
Expand Down Expand Up @@ -115,7 +115,7 @@ func TestGetRecommendedRdsInstanceTypeErrors(t *testing.T) {
region: "eu-north-1",
databaseEngine: "mysql",
databaseEngineVersion: "8.0.32",
instanceTypes: []string{"db.t3.micro"},
instanceTypes: []string{"db.t2.micro"},
},
{
name: "No instance type available for engine",
Expand Down

0 comments on commit 599faf4

Please sign in to comment.