Make it possible to customize the ACM cert validation wait time. (#3843)
* Make it possible to customize the ACM cert validation wait time. Signed-off-by: Kai Xia <kaix+github@fastmail.com> * address PR comments & change requests. Signed-off-by: Kai Xia <kaix+github@fastmail.com> * make tests work. Signed-off-by: Kai Xia <kaix+github@fastmail.com>
This commit is contained in:
parent
d45233fa00
commit
5eb99da75a
3 changed files with 47 additions and 5 deletions
|
|
@ -10,6 +10,9 @@ S3_IGNORE_SUBDOMAIN_BUCKETNAME = os.environ.get(
|
|||
"S3_IGNORE_SUBDOMAIN_BUCKETNAME", ""
|
||||
) in ["1", "true"]
|
||||
|
||||
# How many seconds to wait before we "validate" a new certificate in ACM.
|
||||
ACM_VALIDATION_WAIT = int(os.environ.get("MOTO_ACM_VALIDATION_WAIT", "60"))
|
||||
|
||||
|
||||
def get_sf_execution_history_type():
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue