Skip to content

Commit aa34533

Browse files
committed
updated readme
1 parent b1d9003 commit aa34533

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ The script takes following parameters:
5959
**-a OR --consent-anonymous-data-collect**: This script collects anonymous, non PII and non-account identifiable data, to understand how many times this solution has been deployed by customers. Data collection is completely optional, and if you pass ‘no’ as a value, you will be opted out. This parameters is optional, and defaults to ‘yes’. It only collects, stack name, region, timestamp and the UUID portion of the stack id (for uniqueness).
6060
We only collect data to understand how much the solution is being used, and if it is in-fact being used, then it motivates us to continue to put resources and efforts in it to refine it further and add features.
6161
**(Optional)**
62-
**-s OR --stack-name**: CloudFormation Stack Name. **(Required)**
62+
**-s OR --stack-name**: CloudFormation Stack Name. **(Required)**
63+
**-f OR --features**: Let's you pick support for both planned and unplanned failover or pick either. **(Optional)**
6364
</details>
6465

6566
3. Once the cloudformation finishes building resources in all regions, execute the following command, passing **all regions** of the global databases you wish to manage.
@@ -109,7 +110,6 @@ To remove this solution from your account, do following:
109110
## Current Limitations
110111

111112
* **Partial SSL Support** - Since the solution uses a Route 53 CNAME, the SSL certificate will not be able to validate the aurora servername. For example pgsql client [verify-full](https://www.postgresql.org/docs/9.1/libpq-ssl.html) or mysql client [ssl-verify-server-cert](https://dev.mysql.com/doc/refman/5.7/en/connection-options.html#option_general_ssl-verify-server-cert) will fail to validate server identity.
112-
* **Only supports [Managed planned failover](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.html#aurora-global-database-disaster-recovery.managed-failover)** - If you do a manual failover by breaking the global database cluster and then promoting the secondary region cluster to primary (detach and promote), this solution will not be able to detect that condition.
113113

114114

115115
## License Summary

managed-gdb-cft.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,11 @@ Resources:
158158
if (responsed['ResponseMetadata']['HTTPStatusCode']) == 200:
159159
print("Cname ",recorname1,"Successsfully updated to endpoint ",writerep)
160160
else:
161-
print("Error updateing cnname")
161+
print("Error updating cnname")
162162
163163
# skip if the endpoint is not active
164164
elif (j['EndpointType']=="WRITER" and j['Status']=='inactive'):
165-
print("This is a writer enpoint of a secondary region, skipping")
165+
print("This is a writer endpoint of a secondary region, skipping")
166166
167167
168168
# If this was a detach-promote event, we consider this as a unplanned failover and delete the ddb entry.

0 commit comments

Comments
 (0)