aws-architect 6.7.53 → 6.7.57

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/CHANGELOG.md CHANGED
@@ -4,6 +4,7 @@ This is the changelog for [AWS Architect](readme.md).
4
4
  ## 6.7 ##
5
5
  * Fix handlers for /route and /route/ so that the index.html is always duplicated.
6
6
  * Add support for organizational stack set deployment
7
+ * Remove invalid regions from organizational deployment [eu-central-2, ap-south-2, eu-south-2, me-central-1, ap-southeast-4]
7
8
 
8
9
  ## 6.6 ##
9
10
  * Add support to `deleteWebsiteVersion(version)`
@@ -21,11 +21,7 @@
21
21
  "Key": "Service",
22
22
  "Value": { "Ref": "dnsName" }
23
23
  }
24
- ],
25
- "WebsiteConfiguration" : {
26
- "ErrorDocument" : "index.html",
27
- "IndexDocument" : "index.html"
28
- }
24
+ ]
29
25
  }
30
26
  },
31
27
 
@@ -480,7 +480,7 @@ class CloudFormationDeployer {
480
480
  const currentStackData = await this.cloudFormationClient.describeStackSet({ StackSetName: options.stackSetName }).promise().then(data => data.StackSet);
481
481
  const rawRegions = await new EC2().describeRegions().promise().then(data => data.Regions.map(r => r.RegionName));
482
482
  const newRegions = rawRegions.filter(r => !currentStackData.Regions || !currentStackData.Regions.some(e => e === r))
483
- .filter(r => r !== 'eu-central-2');
483
+ .filter(r => r !== 'eu-central-2' && r !== 'ap-south-2' && r !== 'eu-south-2' && r !== 'me-central-1' && r !== 'ap-southeast-4');
484
484
 
485
485
  // If the stack already existed, and there are no new regions, all the stacks are updated then check to see if the template matches the new template
486
486
  if (stackExists && !newRegions.length) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-architect",
3
- "version": "6.7.53",
3
+ "version": "6.7.57",
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",