Browse Source

add note about fallback authentication for route53 provider

pull/246/head
Adam Smith 8 years ago
parent
commit
16eda53eb3
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      octodns/provider/route53.py

+ 5
- 2
octodns/provider/route53.py View File

@ -217,11 +217,14 @@ class Route53Provider(BaseProvider):
route53:
class: octodns.provider.route53.Route53Provider
# The AWS access key id (required)
# The AWS access key id
access_key_id:
# The AWS secret access key (required)
# The AWS secret access key
secret_access_key:
Alternatively, you may leave out access_key_id and secret_access_key,
this will result in boto3 deciding authentication dynamically.
In general the account used will need full permissions on Route53.
'''
SUPPORTS_GEO = True


Loading…
Cancel
Save