forked from aiven/terraform-provider-aiven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.go
54 lines (49 loc) · 1.22 KB
/
provider.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
package main
import (
"github.com/hashicorp/terraform/helper/schema"
"github.com/jelmersnoeck/aiven"
)
func Provider() *schema.Provider {
return &schema.Provider{
Schema: map[string]*schema.Schema{
"email": &schema.Schema{
Type: schema.TypeString,
Required: true,
Sensitive: true,
Description: "Aiven email address",
},
"otp": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "Aiven One-Time password",
},
"password": &schema.Schema{
Type: schema.TypeString,
Required: true,
Sensitive: true,
Description: "Aiven password",
},
},
ResourcesMap: map[string]*schema.Resource{
"aiven_project": resourceProject(),
"aiven_service": resourceService(),
"aiven_database": resourceDatabase(),
"aiven_service_user": resourceServiceUser(),
},
ConfigureFunc: func(d *schema.ResourceData) (interface{}, error) {
return aiven.NewMFAUserClient(
d.Get("email").(string),
d.Get("otp").(string),
d.Get("password").(string),
)
},
}
}
func optionalString(d *schema.ResourceData, key string) string {
str, ok := d.Get(key).(string)
if !ok {
return ""
}
return str
}