From e6529112aa71a54e6ef0a026283143c80f7fd465 Mon Sep 17 00:00:00 2001 From: Jacob Bednarz Date: Fri, 2 Jun 2023 10:43:14 +1000 Subject: [PATCH] custom_hostname: add support for `bundle_method` --- .changelog/1298.txt | 3 +++ custom_hostname.go | 1 + 2 files changed, 4 insertions(+) create mode 100644 .changelog/1298.txt diff --git a/.changelog/1298.txt b/.changelog/1298.txt new file mode 100644 index 00000000000..fff1d2a2b9f --- /dev/null +++ b/.changelog/1298.txt @@ -0,0 +1,3 @@ +```release-note:enhancement +custom_hostname: add support for `bundle_method` TLS configuration +``` diff --git a/custom_hostname.go b/custom_hostname.go index 29bbdb9fed3..0404a074507 100644 --- a/custom_hostname.go +++ b/custom_hostname.go @@ -79,6 +79,7 @@ type CustomHostnameSSL struct { SSLValidationRecord ValidationRecords []SSLValidationRecord `json:"validation_records,omitempty"` ValidationErrors []SSLValidationError `json:"validation_errors,omitempty"` + BundleMethod string `json:"bundle_method,omitempty"` } // CustomMetadata defines custom metadata for the hostname. This requires logic to be implemented by Cloudflare to act on the data provided.