Skip to content

Commit

Permalink
fix: integ test
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Apr 28, 2024
1 parent b52fa32 commit f60e559
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -4,9 +4,12 @@ import * as integ from '@aws-cdk/integ-tests-alpha';
import * as constructs from 'constructs';
import * as redshift from '../lib';

const app = new cdk.App();
const app = new cdk.App({
context: {
'availability-zones:account=123456789012:region=us-east-1': ['us-east-1a', 'us-east-1b', 'us-east-1c'],
},
});
const stack = new cdk.Stack(app, 'aws-cdk-redshift-cluster-database', {
// Specify account and region to create 3 AZs
env: {
account: '123456789012',
region: 'us-east-1',
Expand Down

0 comments on commit f60e559

Please sign in to comment.