forked from WesleyCharlesBlake/aws-codepipeline-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.yml
64 lines (61 loc) · 1.6 KB
/
template.yml
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
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: Code Pipeline Slack Notifier
Parameters:
SlackBotUserOAuthAccessToken:
MinLength: 1
Type: String
NoEcho: True
SlackChannel:
Type: String
MinLength: 1
Default: builds
SlackBotName:
MinLength: 1
Type: String
Default: PipelineBuildBot
SlackBotIcon:
MinLength: 1
Type: String
Default: ":robot_face:"
Resources:
Notifier:
Type: AWS::Serverless::Function
Properties:
Runtime: python3.7
# FunctionUrlConfig:
# AuthType: NONE #AWS_IAM for security
Timeout: 30
MemorySize: 256
CodeUri: src/
Handler: notifier.run
# Layers:
# - arn:aws:lambda:eu-west-1:553035198032:layer:git:14
# ReservedConcurrentExecutions: 1
Environment:
Variables:
SLACK_BOT_TOKEN: !Ref SlackBotUserOAuthAccessToken
SLACK_BOT_NAME: !Ref SlackBotName
SLACK_BOT_ICON: !Ref SlackBotIcon
SLACK_CHANNEL: !Ref SlackChannel
Policies:
- AWSLambdaBasicExecutionRole
- Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "codepipeline:Get*"
- "codepipeline:List*"
Resource: "*"
- Effect: Allow
Action:
- "codebuild:Get*"
Resource: "*"
Events:
CodePipelineEvent:
Type: CloudWatchEvent
Properties:
Pattern:
source:
- aws.codepipeline
- aws.codebuild