forked from ovh/terraform-provider-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.go
153 lines (133 loc) · 5.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package ovh
import (
"fmt"
"os"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/terraform"
"github.com/mitchellh/go-homedir"
ini "gopkg.in/ini.v1"
)
// Provider returns a schema.Provider for OVH.
func Provider() terraform.ResourceProvider {
return &schema.Provider{
Schema: map[string]*schema.Schema{
"endpoint": {
Type: schema.TypeString,
Required: true,
DefaultFunc: schema.EnvDefaultFunc("OVH_ENDPOINT", nil),
Description: descriptions["endpoint"],
},
"application_key": {
Type: schema.TypeString,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("OVH_APPLICATION_KEY", ""),
Description: descriptions["application_key"],
},
"application_secret": {
Type: schema.TypeString,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("OVH_APPLICATION_SECRET", ""),
Description: descriptions["application_secret"],
},
"consumer_key": {
Type: schema.TypeString,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("OVH_CONSUMER_KEY", ""),
Description: descriptions["consumer_key"],
},
},
DataSourcesMap: map[string]*schema.Resource{
"ovh_cloud_region": dataSourcePublicCloudRegion(),
"ovh_cloud_regions": dataSourcePublicCloudRegions(),
"ovh_domain_zone": dataSourceDomainZone(),
"ovh_iploadbalancing": dataSourceIpLoadbalancing(),
"ovh_me_paymentmean_bankaccount": dataSourceMePaymentmeanBankaccount(),
"ovh_me_paymentmean_creditcard": dataSourceMePaymentmeanCreditcard(),
"ovh_me_ssh_key": dataSourceMeSshKey(),
"ovh_me_ssh_keys": dataSourceMeSshKeys(),
// Legacy naming schema (publiccloud)
"ovh_publiccloud_region": deprecated(dataSourcePublicCloudRegion(),
"Use ovh_cloud_region data source instead"),
"ovh_publiccloud_regions": deprecated(dataSourcePublicCloudRegions(),
"Use ovh_cloud_regions data source instead"),
},
ResourcesMap: map[string]*schema.Resource{
"ovh_iploadbalancing_tcp_farm": resourceIpLoadbalancingTcpFarm(),
"ovh_iploadbalancing_tcp_farm_server": resourceIpLoadbalancingTcpFarmServer(),
"ovh_iploadbalancing_tcp_frontend": resourceIpLoadbalancingTcpFrontend(),
"ovh_iploadbalancing_http_farm": resourceIpLoadbalancingHttpFarm(),
"ovh_iploadbalancing_http_farm_server": resourceIpLoadbalancingHttpFarmServer(),
"ovh_iploadbalancing_http_frontend": resourceIpLoadbalancingHttpFrontend(),
"ovh_iploadbalancing_http_route": resourceIPLoadbalancingRouteHTTP(),
"ovh_iploadbalancing_http_route_rule": resourceIPLoadbalancingRouteHTTPRule(),
"ovh_iploadbalancing_refresh": resourceIPLoadbalancingRefresh(),
"ovh_domain_zone_record": resourceOvhDomainZoneRecord(),
"ovh_domain_zone_redirection": resourceOvhDomainZoneRedirection(),
"ovh_ip_reverse": resourceOvhIpReverse(),
"ovh_cloud_network_private": resourcePublicCloudPrivateNetwork(),
"ovh_cloud_network_private_subnet": resourcePublicCloudPrivateNetworkSubnet(),
"ovh_cloud_user": resourcePublicCloudUser(),
"ovh_me_ssh_key": resourceMeSshKey(),
"ovh_vrack_cloudproject": resourceVRackPublicCloudAttachment(),
// Legacy naming schema (publiccloud)
"ovh_publiccloud_private_network": deprecated(resourcePublicCloudPrivateNetwork(),
"Use ovh_cloud_network_private resource instead"),
"ovh_publiccloud_private_network_subnet": deprecated(resourcePublicCloudPrivateNetworkSubnet(),
"Use ovh_cloud_network_private_subnet resource instead"),
"ovh_publiccloud_user": deprecated(resourcePublicCloudUser(),
"Use ovh_cloud_user resource instead"),
"ovh_vrack_publiccloud_attachment": deprecated(resourceVRackPublicCloudAttachment(),
"Use ovh_vrack_cloudproject resource instead"),
},
ConfigureFunc: configureProvider,
}
}
var descriptions map[string]string
func init() {
descriptions = map[string]string{
"endpoint": "The OVH API endpoint to target (ex: \"ovh-eu\").",
"application_key": "The OVH API Application Key.",
"application_secret": "The OVH API Application Secret.",
"consumer_key": "The OVH API Consumer key.",
}
}
func configureProvider(d *schema.ResourceData) (interface{}, error) {
config := Config{
Endpoint: d.Get("endpoint").(string),
}
rawPath := "~/.ovh.conf"
configPath, err := homedir.Expand(rawPath)
if err != nil {
return &config, fmt.Errorf("Failed to expand config path %q: %s", rawPath, err)
}
if _, err := os.Stat(configPath); err == nil {
c, err := ini.Load(configPath)
if err != nil {
return nil, err
}
section, err := c.GetSection(d.Get("endpoint").(string))
if err != nil {
return nil, err
}
config.ApplicationKey = section.Key("application_key").String()
config.ApplicationSecret = section.Key("application_secret").String()
config.ConsumerKey = section.Key("consumer_key").String()
}
if v, ok := d.GetOk("application_key"); ok {
config.ApplicationKey = v.(string)
}
if v, ok := d.GetOk("application_secret"); ok {
config.ApplicationSecret = v.(string)
}
if v, ok := d.GetOk("consumer_key"); ok {
config.ConsumerKey = v.(string)
}
if err := config.loadAndValidate(); err != nil {
return nil, err
}
return &config, nil
}
func deprecated(r *schema.Resource, msg string) *schema.Resource {
r.DeprecationMessage = msg
return r
}