From 34c30f3cdd876def64da295b618e49136c4ad496 Mon Sep 17 00:00:00 2001 From: Alexey <67220966+ezhische@users.noreply.github.com> Date: Thu, 17 Aug 2023 09:50:25 +0300 Subject: [PATCH] Update cm_certificate.html.markdown Fix domains field in self_managed example --- website/docs/r/cm_certificate.html.markdown | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/docs/r/cm_certificate.html.markdown b/website/docs/r/cm_certificate.html.markdown index 5e3d64063..ad748b618 100644 --- a/website/docs/r/cm_certificate.html.markdown +++ b/website/docs/r/cm_certificate.html.markdown @@ -75,7 +75,6 @@ resource "yandex_dns_recordset" "example" { ```hcl resource "yandex_cm_certificate" "example" { name = "example" - domains = ["example.com"] self_managed { certificate = "-----BEGIN CERTIFICATE----- ... -----END CERTIFICATE----- \n -----BEGIN CERTIFICATE----- ... -----END CERTIFICATE-----" @@ -92,7 +91,7 @@ The following arguments are supported: * `folder_id` - (Optional) Folder that the resource belongs to. If value is omitted, the default provider folder is used. * `description` - (Optional) Certificate description. * `labels` - (Optional) Labels to assign to this certificate. -* `domains` - (Optional) Domains for this certificate. Should be specified for managed certificates. +* `domains` - (Optional) Domains for this certificate. Should be specified only for managed certificates. * `managed` - (Optional) Managed specification. Structure is documented below. * `self_managed` - (Optional) Self-managed specification. Structure is documented below.