forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_arm_sql_server.go
180 lines (143 loc) · 4.42 KB
/
resource_arm_sql_server.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package azurerm
import (
"fmt"
"log"
"github.com/Azure/azure-sdk-for-go/services/sql/mgmt/2015-05-01-preview/sql"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/response"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func resourceArmSqlServer() *schema.Resource {
return &schema.Resource{
Create: resourceArmSqlServerCreateUpdate,
Read: resourceArmSqlServerRead,
Update: resourceArmSqlServerCreateUpdate,
Delete: resourceArmSqlServerDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validateDBAccountName,
},
"location": locationSchema(),
"resource_group_name": resourceGroupNameSchema(),
"version": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{
string("2.0"),
string("12.0"),
}, true),
},
"administrator_login": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"administrator_login_password": {
Type: schema.TypeString,
Required: true,
Sensitive: true,
},
"fully_qualified_domain_name": {
Type: schema.TypeString,
Computed: true,
},
"tags": tagsSchema(),
},
}
}
func resourceArmSqlServerCreateUpdate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).sqlServersClient
ctx := meta.(*ArmClient).StopContext
name := d.Get("name").(string)
resGroup := d.Get("resource_group_name").(string)
location := azureRMNormalizeLocation(d.Get("location").(string))
adminUsername := d.Get("administrator_login").(string)
adminPassword := d.Get("administrator_login_password").(string)
version := d.Get("version").(string)
tags := d.Get("tags").(map[string]interface{})
metadata := expandTags(tags)
parameters := sql.Server{
Location: utils.String(location),
Tags: metadata,
ServerProperties: &sql.ServerProperties{
Version: utils.String(version),
AdministratorLogin: utils.String(adminUsername),
AdministratorLoginPassword: utils.String(adminPassword),
},
}
future, err := client.CreateOrUpdate(ctx, resGroup, name, parameters)
if err != nil {
return err
}
err = future.WaitForCompletion(ctx, client.Client)
if err != nil {
if response.WasConflict(future.Response()) {
return fmt.Errorf("SQL Server names need to be globally unique and %q is already in use.", name)
}
return err
}
resp, err := client.Get(ctx, resGroup, name)
if err != nil {
return err
}
d.SetId(*resp.ID)
return resourceArmSqlServerRead(d, meta)
}
func resourceArmSqlServerRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).sqlServersClient
ctx := meta.(*ArmClient).StopContext
id, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resGroup := id.ResourceGroup
name := id.Path["servers"]
resp, err := client.Get(ctx, resGroup, name)
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
log.Printf("[INFO] Error reading SQL Server %q - removing from state", d.Id())
d.SetId("")
return nil
}
return fmt.Errorf("Error reading SQL Server %s: %v", name, err)
}
d.Set("name", name)
d.Set("resource_group_name", resGroup)
if location := resp.Location; location != nil {
d.Set("location", azureRMNormalizeLocation(*location))
}
if serverProperties := resp.ServerProperties; serverProperties != nil {
d.Set("version", serverProperties.Version)
d.Set("administrator_login", serverProperties.AdministratorLogin)
d.Set("fully_qualified_domain_name", serverProperties.FullyQualifiedDomainName)
}
flattenAndSetTags(d, resp.Tags)
return nil
}
func resourceArmSqlServerDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).sqlServersClient
ctx := meta.(*ArmClient).StopContext
id, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resGroup := id.ResourceGroup
name := id.Path["servers"]
future, err := client.Delete(ctx, resGroup, name)
if err != nil {
return fmt.Errorf("Error deleting SQL Server %s: %+v", name, err)
}
err = future.WaitForCompletion(ctx, client.Client)
if err != nil {
return err
}
return nil
}