This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from azrod/devel
FIX crash on start
- Loading branch information
Showing
3 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,53 @@ | ||
# AWS Route 53 Provider | ||
|
||
## shortly | ||
## Requirements | ||
|
||
* AWS Access Key | ||
* Setup IAM policy | ||
|
||
## Get AWS Access Key | ||
|
||
!!! warning "Warning" | ||
|
||
It's recommended to create dedicated user | ||
|
||
Select your user in the [AWS console](https://console.aws.amazon.com/iam/home?#security_credential | ||
) and click on the **Access Keys** tab. | ||
Create a new access key and copy the Access Key ID and Secret Access Key. | ||
|
||
## Setup IAM policy | ||
|
||
Associate the IAM policy with the user. | ||
|
||
```json title="IAM POLICY" | ||
{ | ||
"Version": "2012-10-17", | ||
"Statement": [ | ||
{ | ||
"Sid": "VisualEditor0", | ||
"Effect": "Allow", | ||
"Action": [ | ||
"route53:GetChange", | ||
"route53:GetHostedZone", | ||
"route53:ListResourceRecordSets" | ||
], | ||
"Resource": [ | ||
"arn:aws:route53:::hostedzone/*", | ||
"arn:aws:route53:::change/*", | ||
"arn:aws:route53:::trafficpolicy/*" | ||
] | ||
}, | ||
{ | ||
"Sid": "VisualEditor1", | ||
"Effect": "Allow", | ||
"Action": [ | ||
"route53:ListHostedZones", | ||
"route53:GetHostedZoneCount", | ||
"route53:ListHostedZonesByName", | ||
"route53:ChangeResourceRecordSets" | ||
], | ||
"Resource": "*" | ||
} | ||
] | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters