serverless-tag-resources 1.2.20 → 1.2.22
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.js +4 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -111,6 +111,7 @@ class TagResourcesServerlessPlugin {
|
|
|
111
111
|
"AWS::Glue::SecurityConfiguration",
|
|
112
112
|
"AWS::Glue::Table",
|
|
113
113
|
"AWS::KMS::Alias",
|
|
114
|
+
"AWS::Route53::HostedZone",
|
|
114
115
|
"AWS::Route53::RecordSet",
|
|
115
116
|
"AWS::Route53::RecordSetGroup",
|
|
116
117
|
"AWS::Route53::HealthCheck",
|
|
@@ -520,6 +521,9 @@ class TagResourcesServerlessPlugin {
|
|
|
520
521
|
if (cfTemplate && cfTemplate.Resources) {
|
|
521
522
|
Object.keys(cfTemplate.Resources).forEach((logicalID) => {
|
|
522
523
|
let resourceType = cfTemplate.Resources[logicalID]["Type"];
|
|
524
|
+
this.serverless.cli.log(
|
|
525
|
+
`TAGGING: validating resource type => ${resourceType}`
|
|
526
|
+
);
|
|
523
527
|
let stackTags = [...this._listBasedStackTags()];
|
|
524
528
|
if (
|
|
525
529
|
self.unsupportedTypes.indexOf(resourceType) == -1 &&
|