Skip to content

Commit

Permalink
Merge pull request #219 from alebedev87/support-hcp-deployment
Browse files Browse the repository at this point in the history
OCPBUGS-37059: Support deployment on HCP clusters
  • Loading branch information
openshift-merge-bot[bot] authored Jul 30, 2024
2 parents 48345f6 + 285074d commit 1ea7602
Show file tree
Hide file tree
Showing 6 changed files with 735 additions and 321 deletions.
3 changes: 3 additions & 0 deletions assets/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# IAM policy

Copied from [kubernetes-sigs/external-dns](https://github.com/kubernetes-sigs/external-dns/blob/b84fc9384313ad459e1a0a11fccb09cc63460ba1/docs/tutorials/aws.md#iam-policy).
25 changes: 25 additions & 0 deletions assets/iam_policy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets"
],
"Resource": [
"arn:aws:route53:::hostedzone/*"
]
},
{
"Effect": "Allow",
"Action": [
"route53:ListHostedZones",
"route53:ListResourceRecordSets",
"route53:ListTagsForResource"
],
"Resource": [
"*"
]
}
]
}
Loading

0 comments on commit 1ea7602

Please sign in to comment.