diff --git a/Documentation/variables/config.md b/Documentation/variables/config.md
index 87891babf6..07885f8989 100644
--- a/Documentation/variables/config.md
+++ b/Documentation/variables/config.md
@@ -30,6 +30,9 @@ This document gives an overview of variables used in all platforms of the Tecton
| tectonic_etcd_tls_enabled | (optional) If set to `true`, TLS secure communication for self-provisioned etcd. will be used.
Note: If `tectonic_experimental` is set to `true` this variable has no effect, because the experimental self-hosted etcd always uses TLS. | string | `true` |
| tectonic_experimental | If set to true, experimental Tectonic assets are being deployed. | string | `false` |
| tectonic_image_re | (internal) Regular expression used to extract repo and tag components | string | `/^([^/]+/[^/]+/[^/]+):(.*)$/` |
+| tectonic_ingress_ca_cert_pem | (optional) The content of the PEM-encoded CA certificate that was used to sign the Tectonic Console's server certificate. If left blank, a CA certificate will be automatically generated. | string | `` |
+| tectonic_ingress_cert_pem | (optional) The content of the PEM-encoded certificate for the Tectonic Console that was signed by `tectonic_ingress_ca_cert_pem`. This field is mandatory if `tectonic_ingress_ca_cert_pem` is set. | string | `` |
+| tectonic_ingress_key_pem | (optional) The content of the PEM-encoded certificate key for the Tectonic Console certificate. This field is mandatory if `tectonic_ingress_ca_cert_pem` is set. | string | `` |
| tectonic_license_path | The path to the tectonic licence file. You can download the Tectonic license file from your Account overview page at [1].
[1] https://account.coreos.com/overview
Note: This field MUST be set manually prior to creating the cluster unless `tectonic_vanilla_k8s` is set to `true`. | string | `` |
| tectonic_master_count | The number of master nodes to be created. This applies only to cloud platforms. | string | `1` |
| tectonic_pull_secret_path | The path the pull secret file in JSON format. This is known to be a "Docker pull secret" as produced by the docker login [1] command. A sample JSON content is shown in [2]. You can download the pull secret from your Account overview page at [3].