-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
232 lines (218 loc) · 7.58 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
class ServerlessEnvironmentSecret {
// Allow the name of the secret to be overridden by SLS_ENVIRONMENT_SECRET_NAME
get secretName() {
return (
this.customEnvironment.SLS_ENVIRONMENT_SECRET_NAME ??
`${this.stage}/${this.service}/environment`
);
}
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.provider = this.serverless.getProvider('aws');
this.service = this.serverless.service.getServiceName();
this.stage = this.provider.getStage();
this.stackName = this.provider.naming.getStackName();
this.customEnvironment = this.serverless.service.custom.environment ?? {};
// We need to evaluate this _before_ the variable gets dereferenced
const leakingSecretVariables = Object.entries(
this.customEnvironment
).reduce((acc, [key, value]) => {
if (typeof value === 'string' && value.startsWith('${ssm:/')) {
acc.push(key);
}
return acc;
}, []);
if (leakingSecretVariables.length > 0) {
const errorMessage = `Invalid custom.environment configuration. The following variables will leak secret values: ${leakingSecretVariables.join(
', '
)}`;
throw new Error(errorMessage);
}
this.stackParameters = [];
this.cfParameters = {};
serverless.configSchemaHandler.defineCustomProperties({
type: 'object',
properties: {
environment: {
type: 'object',
additionalProperties: {
anyOf: [
{
type: 'string',
},
{
type: 'object',
properties: { SecretValue: { type: 'string' } },
required: ['SecretValue'],
additionalProperties: false,
},
{
type: 'object',
patternProperties: {
'^(Fn::|Ref$)': {
anyOf: [
{ type: 'string' },
{ type: 'object' },
{ type: 'array' },
],
},
},
additionalProperties: false,
},
],
},
},
},
});
this.hooks = {
initialize: () => {
// Find any secrets in custom.environment and make them stackParameters
// and CloudFormation parameters
for (const [key, value] of Object.entries(this.customEnvironment)) {
if (value?.SecretValue) {
this.stackParameters.push({
ParameterKey: key,
ParameterValue: value.SecretValue,
});
this.cfParameters[key] = {
Type: 'String',
NoEcho: true,
};
}
}
// Set the environment variable SLS_ENVIRONMENT_SECRET_NAME to the name of the secret
Object.assign(this.serverless.service.provider.environment, {
SLS_ENVIRONMENT_SECRET_NAME: this.secretName,
});
},
'before:offline:start': () => this.#expandLocalEnvironment(),
'before:invoke:local:loadEnvVars': () => this.#expandLocalEnvironment(),
'before:package:finalize': () => this.#updateCloudFormationTemplate(),
// The aws:deploy:deploy:createStack hook is NOT related to our main stack!
// It will be invoked to deploy only the serverless deployment bucket
// management resources.
// We cannot have stackParameters during the deployment of this stack
// because the CloudFormation template does not include any Parameters,
// so supplying parameters in the createStack command will cause an error.
// As a result, we add stackParameters AFTER this hook.
'after:aws:deploy:deploy:createStack': () => this.#addStackParameters(),
};
}
#addStackParameters() {
if (!this.serverless.service.provider.stackParameters) {
this.serverless.service.provider.stackParameters = [];
}
this.serverless.service.provider.stackParameters.push(
...this.stackParameters
);
}
#addParametersToCfTemplate() {
if (
!this.serverless.service.provider.compiledCloudFormationTemplate
.Parameters
) {
this.serverless.service.provider.compiledCloudFormationTemplate.Parameters =
{};
}
Object.assign(
this.serverless.service.provider.compiledCloudFormationTemplate
.Parameters,
this.cfParameters
);
}
#addEnvironmentSecret() {
const resources = {
EnvironmentSecret: {
Type: 'AWS::SecretsManager::Secret',
Properties: {
Name: this.secretName,
Description: `Environment for ${this.stackName}`,
SecretString: cfJoin('', [
'{',
cfJoin(
',',
Object.entries(this.customEnvironment).flatMap(([key, value]) =>
// we don't need to store the name of the secret inside the secret
key === 'SLS_ENVIRONMENT_SECRET_NAME'
? []
: [
cfJoin('', [
`"${key}": `,
cfJoin('', [
'"',
typeof value === 'string' || !('SecretValue' in value)
? value // The literal value from the config vs.
: { Ref: key }, // A Ref to the SecretValue
'"',
]),
]),
]
)
),
'}',
]),
},
},
};
const outputs = {
EnvironmentSecret: {
Description: 'ARN of the EnvironmentSecret SecretId',
Value: { Ref: 'EnvironmentSecret' },
Export: {
Name: { 'Fn::Sub': '${AWS::StackName}:EnvironmentSecret' },
},
},
};
Object.assign(
this.serverless.service.provider.compiledCloudFormationTemplate.Resources,
resources
);
Object.assign(
this.serverless.service.provider.compiledCloudFormationTemplate.Outputs,
outputs,
// This allows the user to override the stack export for the EnvironmentSecret
this.serverless.service.provider.compiledCloudFormationTemplate.Outputs
);
}
#updateIamExecutionRole() {
const policyStatement = {
Effect: 'Allow',
Action: ['secretsmanager:GetSecretValue'],
Resource: [
{
'Fn::Sub': `arn:\${AWS::Partition}:secretsmanager:\${AWS::Region}:\${AWS::AccountId}:secret:${this.secretName}-*`,
},
],
};
const executionRoleMainPolicy =
this.serverless.service.provider.compiledCloudFormationTemplate.Resources.IamRoleLambdaExecution.Properties.Policies.find(
(policy) =>
policy['PolicyName']?.['Fn::Join']?.[1].join(
policy['PolicyName']?.['Fn::Join']?.[0]
) === `${this.service}-${this.stage}-lambda`
);
executionRoleMainPolicy.PolicyDocument.Statement.push(policyStatement);
}
#expandLocalEnvironment() {
const stackParameters = this.stackParameters.reduce((acc, cur) => {
acc[cur.ParameterKey] = cur.ParameterValue;
return acc;
}, {});
Object.assign(process.env, this.customEnvironment, stackParameters);
Object.assign(
this.serverless.service.provider.environment,
this.customEnvironment,
stackParameters
);
}
#updateCloudFormationTemplate() {
this.#addParametersToCfTemplate();
this.#addEnvironmentSecret();
this.#updateIamExecutionRole();
}
}
function cfJoin(delimiter, pieces) {
return { 'Fn::Join': [delimiter, pieces] };
}
module.exports = ServerlessEnvironmentSecret;