-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathschema_account_schema.go
64 lines (54 loc) · 1.08 KB
/
schema_account_schema.go
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
package main
import "github.com/hashicorp/terraform-plugin-sdk/helper/schema"
func accountSchemaFields() map[string]*schema.Schema {
s := map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Optional: true,
},
"source_id": {
Type: schema.TypeString,
Required: true,
},
"schema_id": {
Type: schema.TypeString,
Required: true,
},
"display_attribute": {
Type: schema.TypeString,
Optional: true,
},
"identity_attribute": {
Type: schema.TypeString,
Optional: true,
},
"native_object_type": {
Type: schema.TypeString,
Optional: true,
},
"hierarchy_attribute": {
Type: schema.TypeString,
Optional: true,
},
"include_permissions": {
Type: schema.TypeBool,
Optional: true,
},
"attributes": {
Type: schema.TypeList,
Optional: true,
Elem: &schema.Resource{
Schema: accountSchemaAttributesFields(),
},
},
"modified": {
Type: schema.TypeString,
Optional: true,
},
"created": {
Type: schema.TypeString,
Optional: true,
},
}
return s
}