const stateLockTable = new aws.dynamodb.Table(`pulumi-state-lock`, { name: `my-dynamo-db-table-for-locks`, attributes: [ { name: 'id', type: 'S', }, ], hashKey: 'id', billingMode: 'PAY_PER_REQUEST', })