-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add disk in database resource creation #333
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need To add it In
type CloudProjectDatabaseUpdateOpts struct
andfunc (opts *CloudProjectDatabaseUpdateOpts) FromResource()
to allow disksize to be updatedtype CloudProjectDatabaseResponse struct
andfunc (v CloudProjectDatabaseResponse) ToMap()
to fill correctly the terraform state and avoid eternal updateovh/data_cloud_project_database.go
to get disksize in the datasource
Type: schema.TypeInt, | ||
Description: "Disk size attributes of the cluster", | ||
Optional: true, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use ValidateFunc
to check here that disk_size
is > 0.
Like in ovh/resource_cloud_project_database_kafka_topic.go
ovh/types_cloud_project_database.go
Outdated
Plan string `json:"plan"` | ||
SubnetId string `json:"subnetId,omitempty"` | ||
Version string `json:"version"` | ||
} | ||
|
||
type CloudProjectDatabaseDisk struct { | ||
Size int `json:"size"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
omitempty
ovh/types_cloud_project_database.go
Outdated
return fmt.Errorf("the disk size needs to be positive"), nil | ||
} | ||
opts.Disk = CloudProjectDatabaseDisk{diskSize} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need with both previous validateFunc and the omitempty.
You can just
opts.Disk = CloudProjectDatabaseDisk{
Size: d.Get("disk_size").(int)
}
like CloudProjectDatabaseM3dbNamespaceCreateOpts Retention field
a1a7147
to
7ceaa57
Compare
ovh/types_cloud_project_database.go
Outdated
@@ -71,6 +73,7 @@ func (v CloudProjectDatabaseResponse) ToMap() map[string]interface{} { | |||
obj["plan"] = v.Plan | |||
obj["status"] = v.Status | |||
obj["version"] = v.Version | |||
obj["disk"] = v.Disk.ToMap() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be align with schema because that will be set in terraform state an compare with the schema:
obj["disk_size"] = v.Disk.Size
obj["disk_type"] = v.Disk.Type // This need to add disk_type as computed attribut in the schema
} | ||
|
||
func validateCloudProjectDatabaseDiskSize(v interface{}, k string) (ws []string, errors []error) { | ||
errors = validateIsSupEqual(v.(int), 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only sup ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At first the goal of this check was to avoid making request to the OVH API with negative values that would failed every time. And thus, adding more check will be redundant.
ovh/types_cloud_project_database.go
Outdated
Plan string `json:"plan"` | ||
SubnetId string `json:"subnetId,omitempty"` | ||
Version string `json:"version"` | ||
} | ||
|
||
type CloudProjectDatabaseDisk struct { | ||
Type string `json:"type,omitempty"` | ||
Size *int `json:"size,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
really need pointer ? without it we can remove GetNilIntPointer()
d.Get("disk_size")
will give 0 when not set and that will not be push thanks to omitempty
@@ -243,6 +245,7 @@ The following attributes are exported: | |||
* `plan` - See Argument Reference above. | |||
* `status` - Current status of the cluster. | |||
* `version` - See Argument Reference above. | |||
* `disk_size` - See Argument Reference above. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you add disk_type as computed, need it here
5aeb3aa
to
69c7cf3
Compare
69c7cf3
to
711d1e7
Compare
3d16aa9
to
196d291
Compare
@@ -207,6 +207,8 @@ The following arguments are supported: | |||
|
|||
* `opensearch_acls_enabled` - (Optional) Defines whether the ACLs are enabled on an OpenSearch cluster | |||
|
|||
* `disk_size` - (Optional) Defines the disk size of the database service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* `disk_size` - (Optional) Defines the disk size of the database service. | |
* `disk_size` - (Optional) The disk size of the database service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to know the unit too?
disk_size = 80
As a user I don't know "80" what? :-)
@@ -68,3 +68,5 @@ The following attributes are exported: | |||
* `plan` - Plan of the cluster. | |||
* `status` - Current status of the cluster. | |||
* `version` - The version of the engine in which the service should be deployed | |||
* `disk_size` - Defines the disk size of the database service. | |||
* `disk_type` - Defines the disk type of the database service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* `disk_type` - Defines the disk type of the database service. | |
* `disk_type` - The disk type of the database service. |
@@ -243,6 +245,8 @@ The following attributes are exported: | |||
* `plan` - See Argument Reference above. | |||
* `status` - Current status of the cluster. | |||
* `version` - See Argument Reference above. | |||
* `disk_size` - See Argument Reference above. | |||
* `disk_type` - Defines the disk type of the database service. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* `disk_type` - Defines the disk type of the database service. | |
* `disk_type` - See Argument Reference above. |
Thanks :) |
No description provided.