From 0778c27e1fe7125550497a988425fd25255d2381 Mon Sep 17 00:00:00 2001 From: Ryan Gibbons Date: Thu, 16 Feb 2023 22:58:25 -0600 Subject: [PATCH] Fix parameter name for Bota3 validation `get_change` function takes a parameter of `Id` using lower case will case it to fail bota3 parameter validation. --- cert_mgmt/letsencrypt_mgmt_profile_with_dns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cert_mgmt/letsencrypt_mgmt_profile_with_dns.py b/cert_mgmt/letsencrypt_mgmt_profile_with_dns.py index 389aca90..2384c76e 100644 --- a/cert_mgmt/letsencrypt_mgmt_profile_with_dns.py +++ b/cert_mgmt/letsencrypt_mgmt_profile_with_dns.py @@ -193,7 +193,7 @@ def add_dns_text_record(key_digest_64, txt_record_name, kwargs): #Waiting for changes to propogate to all the Route 53 authoritative DNS servers while(response["ChangeInfo"]["Status"]!='INSYNC'): - response = client.get_change(id=response["ChangeInfo"]["Id"]) + response = client.get_change(Id=response["ChangeInfo"]["Id"]) print("Added dns text record") except Exception as e: