Skip to content
This repository was archived by the owner on Jun 28, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions doc_source/serverless-policy-template-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,31 @@ Gives permission to get the secret value for the specified AWS Secrets Manager s
]
```

## AcmGetCertificatePolicy<a name="acm-get-certificate-policy"></a>

Gives permission to get a certificate and its certificate chain from ACM\.

```
"Statement": [
{
"Effect": "Allow",
"Action": [
"acm:GetCertificate"
],
"Resource": {
"Fn::Sub": [
"${certificateArn}",
{
"certificateArn": {
"Ref": "CertificateArn"
}
}
]
}
}
]
```

## CodePipelineReadOnlyPolicy<a name="code-pipeline-readonly-policy"></a>

Gives read permission to get details about a CodePipeline pipeline\.
Expand Down