Skip to content

Commit fba8941

Browse files
rjjaegerawsJaeger
andauthored
fix: [BUG][Functional] Store Outputs to SSM fails when there are ~ 10… (#783)
* fix: [BUG][Functional] Store Outputs to SSM fails when there are ~ 100 AWS Accounts in the Organization * prettier update Co-authored-by: Jaeger <rjjaeger@147ddae1cfc6.ant.amazon.com>
1 parent 62b5ff9 commit fba8941

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/core/cdk/src/initial-setup.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export namespace InitialSetup {
7878
suffixLength: 0,
7979
}),
8080
partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING },
81+
billingMode: dynamodb.BillingMode.PAY_PER_REQUEST,
8182
});
8283

8384
const outputsTable = new dynamodb.Table(this, 'Outputs', {
@@ -89,6 +90,7 @@ export namespace InitialSetup {
8990
name: 'id',
9091
type: dynamodb.AttributeType.STRING,
9192
},
93+
billingMode: dynamodb.BillingMode.PAY_PER_REQUEST,
9294
});
9395

9496
const outputUtilsTable = new dynamodb.Table(this, 'OutputUtils', {
@@ -100,6 +102,7 @@ export namespace InitialSetup {
100102
name: 'id',
101103
type: dynamodb.AttributeType.STRING,
102104
},
105+
billingMode: dynamodb.BillingMode.PAY_PER_REQUEST,
103106
});
104107

105108
// This is the maximum time before a build times out

0 commit comments

Comments
 (0)