summaryrefslogtreecommitdiff
path: root/libvirt/resource_libvirt_domain_console.go
diff options
context:
space:
mode:
Diffstat (limited to 'libvirt/resource_libvirt_domain_console.go')
-rw-r--r--libvirt/resource_libvirt_domain_console.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/libvirt/resource_libvirt_domain_console.go b/libvirt/resource_libvirt_domain_console.go
deleted file mode 100644
index d8e11248..00000000
--- a/libvirt/resource_libvirt_domain_console.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package libvirt
-
-import (
- "github.com/hashicorp/terraform/helper/schema"
-)
-
-func consoleSchema() map[string]*schema.Schema {
- return map[string]*schema.Schema{
- "type": {
- Type: schema.TypeString,
- Optional: false,
- Required: true,
- ForceNew: true,
- },
- "source_path": {
- Type: schema.TypeString,
- Optional: true,
- Required: false,
- ForceNew: true,
- },
- "target_port": {
- Type: schema.TypeString,
- Optional: false,
- Required: true,
- ForceNew: true,
- },
- "target_type": {
- Type: schema.TypeString,
- Optional: true,
- Required: false,
- ForceNew: true,
- },
- }
-}