Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions website/docs/r/cm_certificate.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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-----"
Expand All @@ -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.

Expand Down