diff --git a/README.md b/README.md index f6f82d1..b48086f 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,6 @@ This Terraform module will deploy an IPSec VPN Tunnel on an NSX-T Edge Gateway i | authentication_mode | The authentication mode for the IPSec VPN tunnel | string | "PSK" | no | | certificate_alias | The alias of the library certificate to use for authentication | string | "" | no | | ca_certificate_alias | The alias of the CA certificate to use for authentication | string | "" | no | -| certificate_id | The ID of the library certificate to use for authentication | string | "" | no | -| ca_certificate_id | The ID of the CA certificate to use for authentication | string | "" | no | ## Outputs diff --git a/variables.tf b/variables.tf index 4584393..a6b4391 100644 --- a/variables.tf +++ b/variables.tf @@ -60,12 +60,3 @@ variable "certificate_alias" { variable "ca_certificate_alias" { default = "" } - -variable "certificate_id" { - default = "" -} - -variable "ca_certificate_id" { - default = "" -} -