summaryrefslogtreecommitdiff
path: root/libvirt/resource_libvirt_domain_netiface.go
blob: 7ffc948a8a9ad4d911767fb92f6d162f6f822b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package libvirt

import (
	"github.com/hashicorp/terraform/helper/schema"
)

func networkInterfaceCommonSchema() map[string]*schema.Schema {
	return map[string]*schema.Schema{
		"network_id": {
			Type:     schema.TypeString,
			Optional: true,
			ForceNew: true,
			Computed: true,
		},
		"network_name": {
			Type:     schema.TypeString,
			Optional: true,
			ForceNew: true,
			Computed: true,
		},
		"bridge": {
			Type:     schema.TypeString,
			Optional: true,
			ForceNew: true,
		},
		"vepa": {
			Type:     schema.TypeString,
			Optional: true,
			ForceNew: true,
		},
		"macvtap": {
			Type:     schema.TypeString,
			Optional: true,
			ForceNew: true,
		},
		"passthrough": {
			Type:     schema.TypeString,
			Optional: true,
			ForceNew: true,
		},
		"hostname": {
			Type:     schema.TypeString,
			Optional: true,
			Computed: true,
			ForceNew: false,
		},
		"mac": {
			Type:     schema.TypeString,
			Optional: true,
			Computed: true,
			ForceNew: true,
		},
		"wait_for_lease": {
			Type:     schema.TypeBool,
			Optional: true,
		},
		"addresses": {
			Type:     schema.TypeList,
			Optional: true,
			Computed: true,
			ForceNew: false,
			Elem: &schema.Schema{
				Type: schema.TypeString,
			},
		},
	}
}