Skip to content

Commit

Permalink
Merge pull request #275 from authzed/sohanmaheshwar-patch-1
Browse files Browse the repository at this point in the history
Update deploying-spicedb-on-eks.mdx
  • Loading branch information
tstirrat15 authored Oct 22, 2024
2 parents 00087e0 + 90ece05 commit 0a13c0b
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions pages/spicedb/ops/deploying-spicedb-on-eks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,27 @@ In order for the cluster to dynamically configure DNS, the first step is grant a

```json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "route53:GetChange",
"Resource": "arn:aws:route53:::change/*"
},
{
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets",
"route53:ListResourceRecordSets"
],
"Resource": "arn:aws:route53:::hostedzone/*"
{
"Effect": "Allow",
"Action": "route53:ListHostedZonesByName",
"Resource": "*"
}
]
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "route53:GetChange",
"Resource": "arn:aws:route53:::change/*"
},
{
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets",
"route53:ListResourceRecordSets"
],
"Resource": "arn:aws:route53:::hostedzone/*"
},
{
"Effect": "Allow",
"Action": "route53:ListHostedZonesByName",
"Resource": "*"
}
]
}
```

Expand Down

0 comments on commit 0a13c0b

Please sign in to comment.