aws-architect 6.7.143 → 6.7.144

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -41,6 +41,7 @@ export interface StackSetConfiguration {
41
41
  }
42
42
 
43
43
  export interface OrganizationalStackSetConfiguration {
44
+ orgIds?: Array<string>;
44
45
  changeSetName: string;
45
46
  stackSetName: string;
46
47
  tags?: Record<string, string>;
@@ -553,7 +553,7 @@ class CloudFormationDeployer {
553
553
  const deployToAdditionalRegionsParams = {
554
554
  StackSetName: options.stackSetName,
555
555
  DeploymentTargets: {
556
- OrganizationalUnitIds: rootOrgsInfo.Roots.map(org => org.Id)
556
+ OrganizationalUnitIds: options.orgIds || rootOrgsInfo.Roots.map(org => org.Id)
557
557
  },
558
558
  Regions: newRegions,
559
559
  OperationId: changeSetName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-architect",
3
- "version": "6.7.143",
3
+ "version": "6.7.144",
4
4
  "description": "AWS Architect is a node based tool to configure and deploy AWS-based microservices.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",