Skip to content

Commit bc49dd4

Browse files
Plata, Sergio (Colombia)Plata, Sergio (Colombia)
Plata, Sergio (Colombia)
authored and
Plata, Sergio (Colombia)
committed
DEV: add lambda edge security headers
1 parent 51ab836 commit bc49dd4

7 files changed

+108
-17
lines changed

edge_lambda.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
Resources:
2+
LambdaEdge:
3+
Type: AWS::Lambda::Function
4+
Properties:
5+
Handler: index.handler
6+
Role: !GetAtt LambdaIAMRole.Arn
7+
Code:
8+
ZipFile: |
9+
'use strict';
10+
exports.handler = (event, context, callback) => {
11+
const response = event.Records[0].cf.response;
12+
const headers = response.headers;
13+
headers['content-security-policy'] = [{
14+
key: 'Content-Security-Policy',
15+
value: "default-src 'none'; img-src 'self'; script-src 'self'; style-src 'self'; object-src 'none'"
16+
}];
17+
headers['x-content-type-options'] = [{
18+
key: 'X-Content-Type-Options',
19+
value: 'nosniff'
20+
}];
21+
headers['x-frame-options'] = [{
22+
key: 'X-Frame-Options',
23+
value: 'SAMEORIGIN'
24+
}];
25+
headers['x-permitted-cross-domain-policies'] = [{
26+
key: 'X-Permitted-Cross-Domain-Policies',
27+
value: 'master-only'
28+
}];
29+
headers['x-xss-protection'] = [{
30+
key: 'X-XSS-Protection',
31+
value: '1; mode=block'
32+
}];
33+
headers['referrer-policy'] = [{
34+
key: 'Referrer-Policy',
35+
value: 'SAME-ORIGIN'
36+
}];
37+
headers['strict-transport-security'] = [{
38+
key: 'Strict-Transport-Security',
39+
value: 'max-age=63072000; includeSubdomains; preload'
40+
}];
41+
callback(null, response);
42+
};
43+
Runtime: ${self:provider.runtime}
44+
MemorySize: 128
45+
Timeout: 1

iam_role_edge.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
Resources:
3+
LambdaIAMRole:
4+
Type: "AWS::IAM::Role"
5+
Properties:
6+
AssumeRolePolicyDocument:
7+
Version: "2012-10-17"
8+
Statement:
9+
- Sid: "AllowLambdaServiceToAssumeRole"
10+
Effect: "Allow"
11+
Action:
12+
- "sts:AssumeRole"
13+
Principal:
14+
Service:
15+
- "lambda.amazonaws.com"
16+
- "edgelambda.amazonaws.com"
17+
Path: "/"
18+
ManagedPolicyArns:
19+
- "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"

jenkins/nonprod_Jenkinsfile

-12
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,4 @@ node('linux') {
2727
}
2828
}
2929
}
30-
31-
stage('Zip Files && Artifactory upload') {
32-
//zip dir: '', glob: '', zipFile: 'intl-co-plsv-infr-dev.zip'
33-
sh 'cd ..'
34-
sh 'pwd'
35-
sh 'ls'
36-
sh 'zip -r co-plsv-front-infr.zip . -x co-plsv-front-infr/jenkins/dev_Jenkinsfile co-plsv-front-infr/jenkins/preprod_Jenkinsfile co-plsv-front-infr/.serverless co-plsv-front-infr/.git/**'
37-
sh 'pwd'
38-
sh 'ls'
39-
def artifacts = ['co-plsv-front-infr.zip']
40-
artifactoryUploadFiles files:artifacts,version:ARTIFACT_VERSION,packageType:'npm',appName:'co-plsv-infra'
41-
}
4230
}

jenkins/prod_Jenkinsfile

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ node('linux') {
44
stage('Unzip Files'){
55
sh 'unzip -l co-plsv-front-infr.zip'
66
}
7-
stage('Proceed to Prod'){
7+
/*stage('Proceed to Prod'){
88
input message: 'Proceed with Deploy to prod?', ok: 'Yes'
9-
}
9+
}**/
1010
stage('Preparation') {
1111
//git credentialsId: 'intl_gituser', url: 'https://[email protected]/scm/anpolserv/co-plsv-front-infr.git', branch: 'nonprod'
1212
sh 'npm --version'
@@ -18,7 +18,6 @@ node('linux') {
1818
sh 'ls'
1919
}
2020
stage('Build') {
21-
deployToNonProd {
2221
withAWS(credentials:getAWSCredentialID(environment:"${env.APPENV}"), region:'us-east-1') {
2322
sh 'export SLS_DEBUG=true'
2423
sh 'dir'
@@ -28,8 +27,7 @@ node('linux') {
2827
}
2928
withSonarQubeEnv('sonarqube') {
3029
// TODO sh 'sonar-scanner -Dsonar.projectKey=andino-flex-mailer -Dsonar.projectName=andino-flex-mailer -Dsonar.projectVersion=0.0.1 -Dsonar.sources=src'
31-
}
32-
}
30+
}
3331
}
3432

3533
}

jenkins/release_Jenkinsfile

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env groovy
2+
@Library('utils@master') _
3+
import com.lmig.intl.cloud.jenkins.util.EnvConfigUtil
4+
def ARTIFACT_VERSION = "1.${BUILD_NUMBER}";
5+
node('linux') {
6+
stage('Preparation') {
7+
git credentialsId: 'intl_gituser', url: 'https://[email protected]/scm/anpolserv/co-plsv-front-infr.git', branch: 'master'
8+
sh 'pwd'
9+
sh 'ls'
10+
}
11+
stage('Zip Files && Artifactory upload') {
12+
//zip dir: '', glob: '', zipFile: 'intl-co-plsv-infr-dev.zip'
13+
sh 'cd ..'
14+
sh 'pwd'
15+
sh 'ls'
16+
sh 'zip -r co-plsv-front-infr.zip . -x co-plsv-front-infr/jenkins/dev_Jenkinsfile co-plsv-front-infr/jenkins/nonprod_Jenkinsfile co-plsv-front-infr/.serverless co-plsv-front-infr/.git/**'
17+
sh 'pwd'
18+
sh 'ls'
19+
def artifacts = ['co-plsv-front-infr.zip']
20+
artifactoryUploadFiles files:artifacts,version:ARTIFACT_VERSION,packageType:'npm',appName:'co-plsv-infr'
21+
}
22+
stage('Artifactory Promoted to Prod') {
23+
promoteToProd(
24+
25+
promoteArtifact: true,
26+
appName:'co-plsv-infr',
27+
packageType:'npm',
28+
version: ARTIFACT_VERSION,
29+
singleJenkinsfilePattern: true
30+
){}
31+
}
32+
}

lambd_edge_version.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Resources:
2+
LambdaEdgeVersion:
3+
Type: AWS::Lambda::Version
4+
DeletionPolicy: Retain
5+
Properties:
6+
FunctionName: !GetAtt LambdaEdge.Arn

serverless.yml

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ resources:
5656
- ${file(./bucketDeploy.yml)}
5757
- ${file(./InfrBucketDeployment.yml)}
5858
- ${file(./cloudfrontDeploy.yml)}
59+
- ${file(./iam_role_edge.yml)}
60+
- ${file(./edge_lambda.yml)}
61+
- ${file(./lambd_edge_version.yml)}
5962

6063
- Outputs:
6164
PLSVCloudFrontOriginAccessIdentity:

0 commit comments

Comments
 (0)