You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"vsphere_content_library_item" {
source="./modules/vsphere/r/vsphere_content_library_item"# description - (optional) is a type of stringdescription=null# file_url - (optional) is a type of stringfile_url=null# library_id - (required) is a type of stringlibrary_id=null# name - (required) is a type of stringname=null# source_uuid - (optional) is a type of stringsource_uuid=null# type - (optional) is a type of stringtype=null
}
variable"description" {
description="(optional) - Optional description of the content library item."type=stringdefault=null
}
variable"file_url" {
description="(optional) - ID of source VM of content library item."type=stringdefault=null
}
variable"library_id" {
description="(required) - ID of the content library to contain item"type=string
}
variable"name" {
description="(required) - The name of the content library item."type=string
}
variable"source_uuid" {
description="(optional) - The managed object ID of an existing VM to be cloned to the content library."type=stringdefault=null
}
variable"type" {
description="(optional) - Type of content library item."type=stringdefault=null
}
resource"vsphere_content_library_item""this" {
# description - (optional) is a type of stringdescription=var.description# file_url - (optional) is a type of stringfile_url=var.file_url# library_id - (required) is a type of stringlibrary_id=var.library_id# name - (required) is a type of stringname=var.name# source_uuid - (optional) is a type of stringsource_uuid=var.source_uuid# type - (optional) is a type of stringtype=var.type
}