@@ -2,11 +2,13 @@ package ovh
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
6
- "github.com/ovh/terraform-provider-ovh/ovh/helpers"
7
5
"net/url"
8
6
"strconv"
7
+ "strings"
9
8
"time"
9
+
10
+ "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11
+ "github.com/ovh/terraform-provider-ovh/ovh/helpers"
10
12
)
11
13
12
14
func resourceCloudProjectRegionStoragePresign () * schema.Resource {
@@ -21,25 +23,25 @@ func resourceCloudProjectRegionStoragePresign() *schema.Resource {
21
23
Required : true ,
22
24
ForceNew : true ,
23
25
DefaultFunc : schema .EnvDefaultFunc ("OVH_CLOUD_PROJECT_SERVICE" , nil ),
24
- Description : "Service name of the resource representing the ID of the cloud project. " ,
26
+ Description : "Service name of the resource representing the ID of the cloud project" ,
25
27
},
26
28
"region_name" : {
27
29
Type : schema .TypeString ,
28
30
Required : true ,
29
31
ForceNew : true ,
30
- Description : "Region name. " ,
32
+ Description : "Region name" ,
31
33
},
32
34
"name" : {
33
35
Type : schema .TypeString ,
34
36
Required : true ,
35
37
ForceNew : true ,
36
- Description : "The S3 storage container's name. " ,
38
+ Description : "The S3 storage container's name" ,
37
39
},
38
40
"expire" : {
39
41
Type : schema .TypeInt ,
40
42
Required : true ,
41
43
ForceNew : true ,
42
- Description : "How long (in seconds) the URL will be valid. " ,
44
+ Description : "How long (in seconds) the URL will be valid" ,
43
45
},
44
46
"method" : {
45
47
Type : schema .TypeString ,
@@ -57,14 +59,14 @@ func resourceCloudProjectRegionStoragePresign() *schema.Resource {
57
59
Type : schema .TypeString ,
58
60
Required : true ,
59
61
ForceNew : true ,
60
- Description : "Name of the object to download or upload. " ,
62
+ Description : "Name of the object to download or upload" ,
61
63
},
62
64
63
65
// Computed
64
66
"url" : {
65
67
Type : schema .TypeString ,
66
68
Computed : true ,
67
- Description : "Presigned URL. " ,
69
+ Description : "Presigned URL" ,
68
70
},
69
71
},
70
72
}
@@ -73,7 +75,7 @@ func resourceCloudProjectRegionStoragePresign() *schema.Resource {
73
75
func resourceCloudProjectRegionStoragePresignCreate (d * schema.ResourceData , meta interface {}) error {
74
76
config := meta .(* Config )
75
77
serviceName := d .Get ("service_name" ).(string )
76
- regionName := d .Get ("region_name" ).(string )
78
+ regionName := strings . ToUpper ( d .Get ("region_name" ).(string ) )
77
79
name := d .Get ("name" ).(string )
78
80
79
81
resp := & PresignedURL {}
0 commit comments