Route 53 AWS DNS provider question. #290
-
Hey! I want to ask about the access claims required to set Route 53 AWS as a DNS provider. I saw the code here and the unique interaction with the DNS provider are the creation and deletion of the TXT RRs. There is another interaction with the DNS provider somewhere? I just want to know the impact to place the AWS credentials into the function. Awesome tool. Thanks. Agustín. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Be sure to create and use an IAM user with limited privileges. You can refer to the certbot documentation for help. https://certbot-dns-route53.readthedocs.io/en/stable/#sample-aws-policy-json I have tried using a policy that only allows operations of Route 53. You can refine your resources as needed. {
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "route53:*",
"Resource": "*"
}
]
} |
Beta Was this translation helpful? Give feedback.
Be sure to create and use an IAM user with limited privileges. You can refer to the certbot documentation for help.
https://certbot-dns-route53.readthedocs.io/en/stable/#sample-aws-policy-json
I have tried using a policy that only allows operations of Route 53. You can refine your resources as needed.