aws-architect 6.7.52 → 6.7.55

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.
@@ -6,7 +6,7 @@
6
6
  "Description": "The full DNS name for the site."
7
7
  },
8
8
  "hostedZoneId": {
9
- "Type": "String",
9
+ "Type": "AWS::Route53::HostedZone::Id",
10
10
  "Description": "The hostedZone ID"
11
11
  }
12
12
  },
@@ -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
 
@@ -118,10 +118,8 @@ commander
118
118
  await awsArchitect.validateTemplate(stackTemplate, stackConfiguration);
119
119
  if (isMasterBranch) {
120
120
  let parameters = {
121
- serviceName: 'example-service', // must result in a valid Lambda name; for example cannot contain "."
122
- dnsName: packageMetadata.name.toLowerCase(),
123
- hostedZoneId: 'ZHostedZoneID-Route53',
124
- useRoot: 'true'
121
+ dnsName: 'your-app.example.com',
122
+ hostedZoneId: 'Z_Your_HostedZoneID_Route53'
125
123
  };
126
124
  await awsArchitect.deployTemplate(stackTemplate, stackConfiguration, parameters);
127
125
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-architect",
3
- "version": "6.7.52",
3
+ "version": "6.7.55",
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",