Skip to content

Commit

Permalink
Update content_library.html.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Johnson authored and tenthirtyam committed Oct 15, 2023
1 parent e1a7e4c commit 1349d62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/content_library.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ data "vsphere_datastore" "datastore" {
resource "vsphere_content_library" "library" {
name = "Publishing Content Library"
description = "A publishing content library."
storage_backing = toset([data.vsphere_datastore.datastore.id])
storage_backing = [data.vsphere_datastore.datastore.id]
}
```
The next example creates a subscribed content library using the publisher content library as the source and the `subscriber-datastore` as the storage backing.
Expand All @@ -50,7 +50,7 @@ data "vsphere_datastore" "datastore" {
resource "vsphere_content_library" "library" {
name = "Subscribed Content Library"
description = "A subscribed content library."
storage_backing = toset([data.vsphere_datastore.datastore.id])
storage_backing = [data.vsphere_datastore.datastore.id]
subscription {
subscription_url = "https://<vc-fqdn>:443/cls/vcsp/lib/<uuid>/lib.json"
automatic_sync = true // Default.
Expand Down

0 comments on commit 1349d62

Please sign in to comment.