serverless-tag-resources 1.2.19 → 1.2.21
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
|
@@ -30,6 +30,7 @@ class TagResourcesServerlessPlugin {
|
|
|
30
30
|
"AWS::Lambda::EventSourceMapping",
|
|
31
31
|
"AWS::Lambda::LayerVersionPermission",
|
|
32
32
|
"AWS::Lambda::Url",
|
|
33
|
+
"AWS::Lambda::Url",
|
|
33
34
|
"AWS::Logs::LogGroup",
|
|
34
35
|
"AWS::Logs::LogStream",
|
|
35
36
|
"AWS::Logs::Destination",
|
|
@@ -519,6 +520,9 @@ class TagResourcesServerlessPlugin {
|
|
|
519
520
|
if (cfTemplate && cfTemplate.Resources) {
|
|
520
521
|
Object.keys(cfTemplate.Resources).forEach((logicalID) => {
|
|
521
522
|
let resourceType = cfTemplate.Resources[logicalID]["Type"];
|
|
523
|
+
this.serverless.cli.log(
|
|
524
|
+
`TAGGING: validating resource type => ${resourceType}`
|
|
525
|
+
);
|
|
522
526
|
let stackTags = [...this._listBasedStackTags()];
|
|
523
527
|
if (
|
|
524
528
|
self.unsupportedTypes.indexOf(resourceType) == -1 &&
|