serverless-tag-resources 1.2.6 → 1.2.10

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,9 +41,25 @@ 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",
56
+ "AWS::AppSync::ApiKey",
57
+ "AWS::AppSync::ApiCache",
58
+ "AWS::AppSync::DomainName",
59
+ "AWS::AppSync::DomainNameApiAssociation",
60
+ "AWS::AppSync::FunctionConfiguration",
61
+ "AWS::AppSync::GraphQLSchema",
62
+ "AWS::AppSync::Resolver",
47
63
  "AWS::CodeDeploy::Application",
48
64
  "AWS::CodeDeploy::DeploymentConfig",
49
65
  "AWS::Cognito::IdentityPool",
@@ -70,6 +86,8 @@ class TagResourcesServerlessPlugin {
70
86
  "AWS::EFS::FileSystem",
71
87
  "AWS::EFS::MountTarget",
72
88
  "AWS::EFS::AccessPoint",
89
+ "AWS::GlobalAccelerator::Listener",
90
+ "AWS::GlobalAccelerator::EndpointGroup",
73
91
  "AWS::Glue::Database",
74
92
  "AWS::Glue::Crawler",
75
93
  "AWS::Glue::Classifier",
@@ -97,6 +115,7 @@ class TagResourcesServerlessPlugin {
97
115
  "AWS::SecretsManager::RotationSchedule",
98
116
  "AWS::IAM::Policy",
99
117
  "AWS::IAM::Group",
118
+ "AWS::IAM::ManagedPolicy",
100
119
  "AWS::EC2::VPCGatewayAttachment",
101
120
  "AWS::EC2::Route",
102
121
  "AWS::EC2::SubnetRouteTableAssociation",
@@ -118,8 +137,7 @@ class TagResourcesServerlessPlugin {
118
137
  "AWS::Pinpoint::GCMChannel",
119
138
  "AWS::Pinpoint::SMSChannel",
120
139
  "AWS::Pinpoint::VoiceChannel",
121
- "AWS::IAM::ManagedPolicy",
122
- "AWS::ApiGateway::Authorizer",
140
+ "AWS::QLDB::Ledger",
123
141
  ];
124
142
 
125
143
  this.tagDictBasedTypes = [
@@ -134,6 +152,8 @@ class TagResourcesServerlessPlugin {
134
152
  /***Fin Estos***/
135
153
  "AWS::ApiGatewayV2::Api",
136
154
  "AWS::ApiGatewayV2::Stage",
155
+ "AWS::ApiGatewayV2::DomainName",
156
+ "AWS::ApiGatewayV2::VpcLink",
137
157
  "AWS::Glue::Job",
138
158
  "AWS::Glue::Crawler",
139
159
  "AWS::Glue::DevEndpoint",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "serverless-tag-resources",
3
- "version": "1.2.6",
3
+ "version": "1.2.10",
4
4
  "description": "Datamart Solution: Tag all aws resources",
5
5
  "main": "index.js",
6
6
  "scripts": {