diff --git a/cert_mgmt/letsencrypt_mgmt_profile_infoblox_dns.py b/cert_mgmt/letsencrypt_mgmt_profile_infoblox_dns.py index 977e7701..4b210b6c 100644 --- a/cert_mgmt/letsencrypt_mgmt_profile_infoblox_dns.py +++ b/cert_mgmt/letsencrypt_mgmt_profile_infoblox_dns.py @@ -219,7 +219,8 @@ def add_dns_text_record(key_digest_64, txt_record_name, kwargs): rest_url = 'https://' + infoblox_host + '/wapi/v' + \ infoblox_wapi_version + '/record:txt' payload = '{"text": "' + key_digest_64 + '","name": "' + \ - txt_record_name + '"}' + txt_record_name + '","view": "' + \ + infoblox_dns_view + '"}' try: r = post_infoblox(url=rest_url, auth=(infoblox_username, infoblox_password), verify=infoblox_verify_ssl, data=payload, timeout=300)