forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_arm_mysql_configuration.go
153 lines (123 loc) · 3.89 KB
/
resource_arm_mysql_configuration.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 azurerm
import (
"fmt"
"log"
"github.com/Azure/azure-sdk-for-go/services/mysql/mgmt/2017-04-30-preview/mysql"
"github.com/hashicorp/terraform/helper/schema"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func resourceArmMySQLConfiguration() *schema.Resource {
return &schema.Resource{
Create: resourceArmMySQLConfigurationCreate,
Read: resourceArmMySQLConfigurationRead,
Delete: resourceArmMySQLConfigurationDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"resource_group_name": resourceGroupNameSchema(),
"server_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"value": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
},
}
}
func resourceArmMySQLConfigurationCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).mysqlConfigurationsClient
ctx := meta.(*ArmClient).StopContext
log.Printf("[INFO] preparing arguments for AzureRM MySQL Configuration creation.")
name := d.Get("name").(string)
resourceGroup := d.Get("resource_group_name").(string)
serverName := d.Get("server_name").(string)
value := d.Get("value").(string)
properties := mysql.Configuration{
ConfigurationProperties: &mysql.ConfigurationProperties{
Value: utils.String(value),
},
}
future, err := client.CreateOrUpdate(ctx, resourceGroup, serverName, name, properties)
if err != nil {
return err
}
err = future.WaitForCompletion(ctx, client.Client)
if err != nil {
return err
}
read, err := client.Get(ctx, resourceGroup, serverName, name)
if err != nil {
return err
}
if read.ID == nil {
return fmt.Errorf("Cannot read MySQL Configuration %s (resource group %s) ID", name, resourceGroup)
}
d.SetId(*read.ID)
return resourceArmMySQLConfigurationRead(d, meta)
}
func resourceArmMySQLConfigurationRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).mysqlConfigurationsClient
ctx := meta.(*ArmClient).StopContext
id, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resourceGroup := id.ResourceGroup
serverName := id.Path["servers"]
name := id.Path["configurations"]
resp, err := client.Get(ctx, resourceGroup, serverName, name)
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
log.Printf("[WARN] MySQL Configuration %q was not found (resource group %q)", name, resourceGroup)
d.SetId("")
return nil
}
return fmt.Errorf("Error making Read request on Azure MySQL Configuration %q (Resource Group %q): %+v", name, resourceGroup, err)
}
d.Set("name", resp.Name)
d.Set("server_name", serverName)
d.Set("resource_group_name", resourceGroup)
d.Set("value", resp.ConfigurationProperties.Value)
return nil
}
func resourceArmMySQLConfigurationDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).mysqlConfigurationsClient
ctx := meta.(*ArmClient).StopContext
id, err := parseAzureResourceID(d.Id())
if err != nil {
return err
}
resourceGroup := id.ResourceGroup
serverName := id.Path["servers"]
name := id.Path["configurations"]
// "delete" = resetting this to the default value
resp, err := client.Get(ctx, resourceGroup, serverName, name)
if err != nil {
return fmt.Errorf("Error retrieving MySQL Configuration %q (Resource Group %q): %+v", name, resourceGroup, err)
}
properties := mysql.Configuration{
ConfigurationProperties: &mysql.ConfigurationProperties{
// we can alternatively set `source: "system-default"`
Value: resp.DefaultValue,
},
}
future, err := client.CreateOrUpdate(ctx, resourceGroup, serverName, name, properties)
if err != nil {
return err
}
err = future.WaitForCompletion(ctx, client.Client)
if err != nil {
return err
}
return nil
}