serverless-tag-resources 1.2.7 → 1.2.11
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/bitbucket-pipelines.yml +2 -2
- package/index.js +13 -2
- package/package.json +1 -1
package/bitbucket-pipelines.yml
CHANGED
|
@@ -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,7 +51,15 @@ 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",
|
|
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",
|
|
55
63
|
"AWS::CodeDeploy::Application",
|
|
56
64
|
"AWS::CodeDeploy::DeploymentConfig",
|
|
57
65
|
"AWS::Cognito::IdentityPool",
|
|
@@ -78,6 +86,8 @@ class TagResourcesServerlessPlugin {
|
|
|
78
86
|
"AWS::EFS::FileSystem",
|
|
79
87
|
"AWS::EFS::MountTarget",
|
|
80
88
|
"AWS::EFS::AccessPoint",
|
|
89
|
+
"AWS::GlobalAccelerator::Listener",
|
|
90
|
+
"AWS::GlobalAccelerator::EndpointGroup",
|
|
81
91
|
"AWS::Glue::Database",
|
|
82
92
|
"AWS::Glue::Crawler",
|
|
83
93
|
"AWS::Glue::Classifier",
|
|
@@ -103,8 +113,10 @@ class TagResourcesServerlessPlugin {
|
|
|
103
113
|
"AWS::S3::BucketPolicy",
|
|
104
114
|
"AWS::SecretsManager::SecretTargetAttachment",
|
|
105
115
|
"AWS::SecretsManager::RotationSchedule",
|
|
116
|
+
"AWS::SecretsManager::ResourcePolicy",
|
|
106
117
|
"AWS::IAM::Policy",
|
|
107
118
|
"AWS::IAM::Group",
|
|
119
|
+
"AWS::IAM::ManagedPolicy",
|
|
108
120
|
"AWS::EC2::VPCGatewayAttachment",
|
|
109
121
|
"AWS::EC2::Route",
|
|
110
122
|
"AWS::EC2::SubnetRouteTableAssociation",
|
|
@@ -126,8 +138,7 @@ class TagResourcesServerlessPlugin {
|
|
|
126
138
|
"AWS::Pinpoint::GCMChannel",
|
|
127
139
|
"AWS::Pinpoint::SMSChannel",
|
|
128
140
|
"AWS::Pinpoint::VoiceChannel",
|
|
129
|
-
"AWS::
|
|
130
|
-
"AWS::ApiGateway::Authorizer",
|
|
141
|
+
"AWS::QLDB::Ledger",
|
|
131
142
|
];
|
|
132
143
|
|
|
133
144
|
this.tagDictBasedTypes = [
|