cloudmason 2.4.45 → 2.5.47

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.
@@ -90,11 +90,11 @@ exports.updateStack = async function(stackName,s3Url,params,region){
90
90
  // Get the template's declared parameters so we only pass ones that exist
91
91
  const summary = await client.send(new GetTemplateSummaryCommand({ TemplateURL: s3Url }));
92
92
  const templateParamKeys = new Set((summary.Parameters || []).map(p => p.ParameterKey));
93
-
93
+ console.log('Retrieved Template Parameters:', templateParamKeys);
94
94
  const cfParams = Object.keys(params)
95
95
  .filter(k => templateParamKeys.has(k))
96
96
  .map(k => { return { ParameterKey: k, ParameterValue: params[k] } });
97
-
97
+ console.log('Filtered CF Parameters for Update:', cfParams);
98
98
  const cmd = {
99
99
  StackName: stackName,
100
100
  TemplateURL: s3Url,
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"cloudmason","version":"2.4.45","description":"","main":"main.js","scripts":{"build":"node build.js"},"bin":{"mason":"./main.js"},"repository":{"type":"git","url":"https://github.com/kai-harvey/cloudmason.git"},"author":"Kai Harvey","license":"ISC","dependencies":{"@aws-sdk/client-acm":"^3.418.0","@aws-sdk/client-auto-scaling":"^3.470.0","@aws-sdk/client-cloudformation":"^3.418.0","@aws-sdk/client-ec2":"^3.864.0","@aws-sdk/client-iam":"^3.864.0","@aws-sdk/client-marketplace-catalog":"^3.716.0","@aws-sdk/client-route-53":"^3.425.0","@aws-sdk/client-s3":"^3.418.0","@aws-sdk/client-ssm":"^3.421.0","adm-zip":"^0.5.10","ssh2":"^1.16.0","yaml":"^2.6.1"}}
1
+ {"name":"cloudmason","version":"2.5.47","description":"","main":"main.js","scripts":{"build":"node build.js"},"bin":{"mason":"./main.js"},"repository":{"type":"git","url":"https://github.com/kai-harvey/cloudmason.git"},"author":"Kai Harvey","license":"ISC","dependencies":{"@aws-sdk/client-acm":"^3.418.0","@aws-sdk/client-auto-scaling":"^3.470.0","@aws-sdk/client-cloudformation":"^3.418.0","@aws-sdk/client-ec2":"^3.864.0","@aws-sdk/client-iam":"^3.864.0","@aws-sdk/client-marketplace-catalog":"^3.716.0","@aws-sdk/client-route-53":"^3.425.0","@aws-sdk/client-s3":"^3.418.0","@aws-sdk/client-ssm":"^3.421.0","adm-zip":"^0.5.10","ssh2":"^1.16.0","yaml":"^2.6.1"}}