8000 no message · yyolk/aws-lambda-ddns-function@a399a84 · GitHub
[go: up one dir, main page]

Skip to content

Commit a399a84

Browse files
committed
no message
1 parent 0ab9518 commit a399a84

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

ddns-pol.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"Version": "2012-10-17",
3+
"Statement": [{
4+
"Effect": "Allow",
5+
"Action": "ec2:Describe*",
6+
"Resource": "*"
7+
}, {
8+
"Effect": "Allow",
9+
"Action": [
10+
"dynamodb:*"
11+
],
12+
"Resource": "*"
13+
}, {
14+
"Effect": "Allow",
15+
"Action": [
16+
"logs:CreateLogGroup",
17+
"logs:CreateLogStream",
18+
"logs:PutLogEvents"
19+
],
20+
"Resource": "*"
21+
}, {
22+
"Effect": "Allow",
23+
"Action": [
24+
"route53:*"
25+
],
26+
"Resource": [
27+
"*"
28+
]
29+
}]
30+
}

ddns-trust.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"Version": "2012-10-17",
3+
"Statement": [
4+
{
5+
"Sid": "",
6+
"Effect": "Allow",
7+
"Principal": {
8+
"Service": "lambda.amazonaws.com"
9+
},
10+
"Action": "sts:AssumeRole"
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)
0