Skip to content

Commit

Permalink
fix: baremetal descriptions (scaleway#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinBrosse authored Sep 9, 2019
1 parent bac4b50 commit a965dfd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scaleway/resource_baremetal_server_beta.go
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -51,21 +51,21 @@ 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,
Elem: &schema.Schema{
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(),
Expand Down

0 comments on commit a965dfd

Please sign in to comment.