serverless-tag-resources 1.2.7 → 1.2.9

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.
@@ -11,7 +11,7 @@ pipelines:
11
11
  - node
12
12
  script:
13
13
  - export TAG_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
14
- - npm install -g npm-cli-login
15
- - npm-cli-login
14
+ # - npm install -g npm-cli-login
15
+ # - npm-cli-login
16
16
  - npm version $TAG_VERSION
17
17
  - npm publish
package/index.js CHANGED
@@ -51,6 +51,7 @@ class TagResourcesServerlessPlugin {
51
51
  "AWS::ApiGatewayV2::RouteResponse",
52
52
  "AWS::ApiGateway::RequestValidator",
53
53
  "AWS::ApiGateway::GatewayResponse",
54
+ "AWS::ApiGateway::Authorizer",
54
55
  "AWS::AppSync::DataSource",
55
56
  "AWS::CodeDeploy::Application",
56
57
  "AWS::CodeDeploy::DeploymentConfig",
@@ -78,6 +79,8 @@ class TagResourcesServerlessPlugin {
78
79
  "AWS::EFS::FileSystem",
79
80
  "AWS::EFS::MountTarget",
80
81
  "AWS::EFS::AccessPoint",
82
+ "AWS::GlobalAccelerator::Listener",
83
+ "AWS::GlobalAccelerator::EndpointGroup",
81
84
  "AWS::Glue::Database",
82
85
  "AWS::Glue::Crawler",
83
86
  "AWS::Glue::Classifier",
@@ -105,6 +108,7 @@ class TagResourcesServerlessPlugin {
105
108
  "AWS::SecretsManager::RotationSchedule",
106
109
  "AWS::IAM::Policy",
107
110
  "AWS::IAM::Group",
111
+ "AWS::IAM::ManagedPolicy",
108
112
  "AWS::EC2::VPCGatewayAttachment",
109
113
  "AWS::EC2::Route",
110
114
  "AWS::EC2::SubnetRouteTableAssociation",
@@ -126,8 +130,7 @@ class TagResourcesServerlessPlugin {
126
130
  "AWS::Pinpoint::GCMChannel",
127
131
  "AWS::Pinpoint::SMSChannel",
128
132
  "AWS::Pinpoint::VoiceChannel",
129
- "AWS::IAM::ManagedPolicy",
130
- "AWS::ApiGateway::Authorizer",
133
+ "AWS::QLDB::Ledger",
131
134
  ];
132
135
 
133
136
  this.tagDictBasedTypes = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "serverless-tag-resources",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "Datamart Solution: Tag all aws resources",
5
5
  "main": "index.js",
6
6
  "scripts": {