diff --git a/scaleway/resource_baremetal_server_beta.go b/scaleway/resource_baremetal_server_beta.go index 58ce52d641..1109760a57 100644 --- a/scaleway/resource_baremetal_server_beta.go +++ b/scaleway/resource_baremetal_server_beta.go @@ -27,13 +27,13 @@ func resourceScalewayBaremetalServerBeta() *schema.Resource { Type: schema.TypeString, Optional: true, Computed: true, - Description: "Name of the server.", + Description: "Name of the server", }, "offer_id": { Type: schema.TypeString, Required: true, ForceNew: true, - Description: "ID of the server type.", + Description: "ID of the server type", ValidateFunc: validationUUID(), }, "os_id": { @@ -51,13 +51,13 @@ func resourceScalewayBaremetalServerBeta() *schema.Resource { }, Optional: true, Computed: true, - Description: "Array of SSH key IDs allowed to SSH to the server.", + Description: "Array of SSH key IDs allowed to SSH to the server", }, "description": { Type: schema.TypeString, Optional: true, ValidateFunc: validation.StringLenBetween(0, 255), - Description: "Some description to associate to the server, max 255 characters.", + Description: "Some description to associate to the server, max 255 characters", }, "tags": { Type: schema.TypeList, @@ -65,7 +65,7 @@ func resourceScalewayBaremetalServerBeta() *schema.Resource { Type: schema.TypeString, }, Optional: true, - Description: "Array of tags to associate with the server.", + Description: "Array of tags to associate with the server", }, "zone": zoneSchema(), "organization_id": organizationIDSchema(),