Skip to content

Commit

Permalink
Reduce number of azs we're testing
Browse files Browse the repository at this point in the history
Occasionally failed when testing 5 AZs with 5 subnets each resulting in trying to fit 25 subnets into a /27
  • Loading branch information
danielrbradley committed Oct 31, 2023
1 parent 73416b4 commit ba80efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awsx/ec2/subnetDistributor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe("default subnet layout", () => {
fc.property(
fc.record({
vpcCidrMask: cidrMask(),
azs: fc.array(fc.string({ size: "xsmall" }), { minLength: 2, maxLength: 5 }),
azs: fc.array(fc.string({ size: "xsmall" }), { minLength: 2, maxLength: 4 }),
subnetSpecs: fc.array(subnetSpecNoMask(), { minLength: 1, maxLength: 5 }),
}),
({ vpcCidrMask, azs, subnetSpecs }) => {
Expand Down

0 comments on commit ba80efc

Please sign in to comment.