From 4a3aa8dd11b0efda7d5a6d59d7c823d7b3eb1be1 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Tue, 14 Mar 2017 17:57:47 -0700 Subject: [PATCH] Remove documentation about creating IAM users. --- certbot_route53/authenticator.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/certbot_route53/authenticator.py b/certbot_route53/authenticator.py index c04299338..fabf2dec4 100644 --- a/certbot_route53/authenticator.py +++ b/certbot_route53/authenticator.py @@ -17,10 +17,9 @@ from certbot.plugins import common logger = logging.getLogger(__name__) INSTRUCTIONS = ( - "To use, create an IAM user and attach the AmazonRoute53FullAccess policy, then store " - "the access key ID and secret key in ~/.aws/credentials or in " - "AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY, as described at " - "https://boto3.readthedocs.io/en/latest/guide/configuration.html") + "To use, configure credentials as described at " + "https://boto3.readthedocs.io/en/latest/guide/configuration.html#best-practices-for-configuring-credentials " + "and add the necessary permissions for Route53 access") @zope.interface.implementer(interfaces.IAuthenticator) @zope.interface.provider(interfaces.IPluginFactory)