Skip to content

Instantly share code, notes, and snippets.

@axelhodler
Created February 24, 2021 13:40
Show Gist options
  • Save axelhodler/329b46711c68fa944e12285263901d64 to your computer and use it in GitHub Desktop.
Save axelhodler/329b46711c68fa944e12285263901d64 to your computer and use it in GitHub Desktop.
test('ELB health check path is using Spring Boot endpoint', () => {
const app = new cdk.App();
const stack = new Cdktests.CdktestsStack(app, 'MyTestStack');
expectCDK(stack).to(haveResource("AWS::ElasticLoadBalancingV2::TargetGroup",{
HealthCheckPath: '/actuator/health'
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment