serverless-tag-resources 1.2.4 → 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
@@ -41,8 +41,17 @@ class TagResourcesServerlessPlugin {
41
41
  "AWS::ApiGatewayV2::Integration",
42
42
  "AWS::ApiGatewayV2::Route",
43
43
  "AWS::ApiGatewayV2::ApiMapping",
44
+ "AWS::ApiGatewayV2::ApiGatewayManagedOverrides",
45
+ "AWS::ApiGatewayV2::Authorizer",
46
+ "AWS::ApiGatewayV2::Deployment",
47
+ "AWS::ApiGatewayV2::Integration",
48
+ "AWS::ApiGatewayV2::IntegrationResponse",
49
+ "AWS::ApiGatewayV2::Model",
50
+ "AWS::ApiGatewayV2::Route",
51
+ "AWS::ApiGatewayV2::RouteResponse",
44
52
  "AWS::ApiGateway::RequestValidator",
45
53
  "AWS::ApiGateway::GatewayResponse",
54
+ "AWS::ApiGateway::Authorizer",
46
55
  "AWS::AppSync::DataSource",
47
56
  "AWS::CodeDeploy::Application",
48
57
  "AWS::CodeDeploy::DeploymentConfig",
@@ -65,9 +74,13 @@ class TagResourcesServerlessPlugin {
65
74
  "AWS::ElasticLoadBalancingV2::ListenerRule",
66
75
  "AWS::Events::Rule",
67
76
  "AWS::Events::EventBus",
77
+ "AWS::Events::Connection",
78
+ "AWS::Events::ApiDestination",
68
79
  "AWS::EFS::FileSystem",
69
80
  "AWS::EFS::MountTarget",
70
81
  "AWS::EFS::AccessPoint",
82
+ "AWS::GlobalAccelerator::Listener",
83
+ "AWS::GlobalAccelerator::EndpointGroup",
71
84
  "AWS::Glue::Database",
72
85
  "AWS::Glue::Crawler",
73
86
  "AWS::Glue::Classifier",
@@ -95,6 +108,7 @@ class TagResourcesServerlessPlugin {
95
108
  "AWS::SecretsManager::RotationSchedule",
96
109
  "AWS::IAM::Policy",
97
110
  "AWS::IAM::Group",
111
+ "AWS::IAM::ManagedPolicy",
98
112
  "AWS::EC2::VPCGatewayAttachment",
99
113
  "AWS::EC2::Route",
100
114
  "AWS::EC2::SubnetRouteTableAssociation",
@@ -116,8 +130,7 @@ class TagResourcesServerlessPlugin {
116
130
  "AWS::Pinpoint::GCMChannel",
117
131
  "AWS::Pinpoint::SMSChannel",
118
132
  "AWS::Pinpoint::VoiceChannel",
119
- "AWS::IAM::ManagedPolicy",
120
- "AWS::ApiGateway::Authorizer",
133
+ "AWS::QLDB::Ledger",
121
134
  ];
122
135
 
123
136
  this.tagDictBasedTypes = [
@@ -132,6 +145,8 @@ class TagResourcesServerlessPlugin {
132
145
  /***Fin Estos***/
133
146
  "AWS::ApiGatewayV2::Api",
134
147
  "AWS::ApiGatewayV2::Stage",
148
+ "AWS::ApiGatewayV2::DomainName",
149
+ "AWS::ApiGatewayV2::VpcLink",
135
150
  "AWS::Glue::Job",
136
151
  "AWS::Glue::Crawler",
137
152
  "AWS::Glue::DevEndpoint",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "serverless-tag-resources",
3
- "version": "1.2.4",
3
+ "version": "1.2.9",
4
4
  "description": "Datamart Solution: Tag all aws resources",
5
5
  "main": "index.js",
6
6
  "scripts": {