Skip to content

Commit 196d291

Browse files
committed
Add missing disk type in FromResource method
1 parent 711d1e7 commit 196d291

3 files changed

+4
-4
lines changed

ovh/data_cloud_project_database.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func dataSourceCloudProjectDatabase() *schema.Resource {
163163
Computed: true,
164164
},
165165
"disk_type": {
166-
Type: schema.TypeInt,
166+
Type: schema.TypeString,
167167
Description: "Disk type attributes of the cluster",
168168
Computed: true,
169169
},

ovh/resource_cloud_project_database.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ func resourceCloudProjectDatabase() *schema.Resource {
187187
ValidateFunc: validateCloudProjectDatabaseDiskSize,
188188
},
189189
"disk_type": {
190-
Type: schema.TypeInt,
190+
Type: schema.TypeString,
191191
Description: "Disk type attributes of the cluster",
192192
Computed: true,
193193
},

ovh/types_cloud_project_database.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ func (opts *CloudProjectDatabaseCreateOpts) FromResource(d *schema.ResourceData)
177177
opts.NetworkId = nodes[0].NetworkId
178178
opts.SubnetId = nodes[0].SubnetId
179179
opts.Version = d.Get("version").(string)
180-
opts.Disk = CloudProjectDatabaseDisk{Size: d.Get("disk_size").(int)}
180+
opts.Disk = CloudProjectDatabaseDisk{Size: d.Get("disk_size").(int), Type: d.Get("disk_type").(string)}
181181
return nil, opts
182182
}
183183

@@ -204,7 +204,7 @@ func (opts *CloudProjectDatabaseUpdateOpts) FromResource(d *schema.ResourceData)
204204
opts.Plan = d.Get("plan").(string)
205205
opts.Flavor = d.Get("flavor").(string)
206206
opts.Version = d.Get("version").(string)
207-
opts.Disk = CloudProjectDatabaseDisk{Size: d.Get("disk_size").(int)}
207+
opts.Disk = CloudProjectDatabaseDisk{Size: d.Get("disk_size").(int), Type: d.Get("disk_type").(string)}
208208
return nil, opts
209209
}
210210

0 commit comments

Comments
 (0)