Skip to content

Commit

Permalink
Merge branch 'main' into designIpv6Vpc
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Jan 12, 2024
2 parents 8d19bf5 + d07deec commit 911a995
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export class ElasticsearchAccessPolicy extends cr.AwsCustomResource {
constructor(scope: Construct, id: string, props: ElasticsearchAccessPolicyProps) {
super(scope, id, {
resourceType: 'Custom::ElasticsearchAccessPolicy',
installLatestAwsSdk: false,
onUpdate: {
action: 'updateElasticsearchDomainConfig',
service: 'ES',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export class OpenSearchAccessPolicy extends cr.AwsCustomResource {
constructor(scope: Construct, id: string, props: OpenSearchAccessPolicyProps) {
super(scope, id, {
resourceType: 'Custom::OpenSearchAccessPolicy',
installLatestAwsSdk: false,
onUpdate: {
action: 'updateDomainConfig',
service: 'OpenSearch',
Expand Down
1 change: 1 addition & 0 deletions packages/aws-cdk/lib/api/cxapp/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export async function execProgram(aws: SdkProvider, config: Configuration): Prom
if (code === 0) {
return ok();
} else {
debug('failed command:', commandAndArgs);
return fail(new Error(`Subprocess exited with error ${code}`));
}
});
Expand Down

0 comments on commit 911a995

Please sign in to comment.